Home PicoCTF 2018 Reversing 50: Reversing Warmup 1
Writeup
Cancel

Reversing 50: Reversing Warmup 1

Challenge

Throughout your journey you will have to run many programs. Can you navigate to
/problems/reversing-warmup-1_0_f99f89de33522c93964bdec49fb2b838 on the shell server
and run this program to retreive the flag?

Solution

1
2
3
4
5
$ ssh ysje@2018shell1.picoctf.com
picoCTF{who_n33ds_p4ssw0rds_38dj21}
Welcome ysje!
Your shell server account has been created.
Please press enter and reconnect.

We see a flag there but its not for this challenge

1
2
3
$ cd /problems/reversing-warmup-1_0_f99f89de33522c93964bdec49fb2b838
$ ./run
picoCTF{welc0m3_t0_r3VeRs1nG}

or

1
2
$ strings run | grep picoCTF
picoCTF{welc0m3_t0_r3VeRs1nG}

Flag

picoCTF{welc0m3_t0_r3VeRs1nG}