Reverse

~# cat Question

Try reversing this file? Can ya? I forgot the password to this file. Please find it for me?

FILE: ret.elf

This challenge was a straight forward reverse engineering task. Upon opening the ret file, it displayed numerous unreadable symbols. Thus, I utilized strings on the file to extract readable strings and grep to search for the stringpico within the extracted strings, which got me the flag.

┌──(tev㉿kali)-[~/pico]
└─$ chmod _x ret

┌──(tev㉿kali)-[~/pico]
└─$ ./ret
Enter the password to unlock this file: password
You entered: password
Access denied

┌──(tev㉿kali)-[~/pico]
└─$ strings ret | grep pico
picoCTF{h
Password correct, please see flag: picoCTF{3lf_r4v4r5ing_succe55ful_1de05085}

Flag: picoCTF{3lf_r4v4r5ing_succe55ful_1de05085}

Last updated