🧠What I Practiced/Learned/Discovered
- Always decompress files before trying the challenge (lol). I tried the challenge for few minutes to finally find out that I was working on a zip.
🔧 Tools used
Linux shell
gzipstringsgrep
Steps
- Decompressed the file :
gzip -d disko-1.dd.gz - IT was hard to read from the file directly using
catbecause it’s a binary file and non human-readable- Used
strings: which is a command used to extract readable strings from binaries. - Also used our favorite tool :
grepto find stuffs.
- Used
- Run
strings disko-1.dd | grep pico{and got the flag!