Skip to main content

Robot

Forensics | Level 1 - Robot

Challenge

We have recieved an image of a robot that is hiding something. We know that there's a password involved which is name of this robot (no spaces, lowercase). See if you can find the secret.

Download Image

Solution

Solution Guide

This is a steganography challenge. There are many tools for steg challenges and usually involve trial & error. We know there's a password involved which eliminates a lot of methods. We also notice the file extension is .jpg. These 2 clues are great indicators that the method used in this is steghide. But first, we need to find the password which is apparently the robot's name. See if you can use some open source intelligence to figure it out (remember, no spaces and all lowercase).

Reveal Name

figure3

Ok now we simply need to extract the hidden info with this password using steghide. You can use the Linux command steghide extract -sf <image> (-sf means stego_file). Running this will ask you to enter a password, after which it will write the flag to a text file!

You can also use an online tool such as this: https://futureboy.us/stegano/decinput.html

Credits

  • Author(s): Divesh Gupta (legendile7)