Rating:

shebang4

Shebang Points - 200

Since you have been doing so well, I thought I would make this an easy one.

- stephencurry396#4738

Ok... this challenge's focus was on transferring the image file on the server to your local PC. We just used base64 to achieve that:

cat flag.png | base64

... now... copy the output and decode it on your own PC:

echo '<copied_base64>' | base64 -d > flag.png

... simply take a look at the image now:

flag

... the flag is: CYCTF{W3ll_1_gu3$$_th@t_w@s_actually_easy}

Original writeup (https://github.com/B34nB01z/writeups/blob/master/2020/CYCTF/shebang4/README.md).