Home >

Cyber Defense CTF > Forensics

Back <> Next

I’m sure this image is hiding something, but nothing stands out no matter how I look at it. Maybe it’s just stringing me along…

For this challenge we are given doubletake.jpg to download and inspect. The trick to get the flag for this one is that you need to run the strings command specifically with the flags to look for 16-bit littleendian, and then base64 decode the result:

strings -e l doubletake.jpg | base64 -d

doubletake

Back <> Next