Steganography 2
Description
Find a way to decode the payload that was hidden in the image file. You don't need to wink your eyes. The password is skr.
Attachment: hackersteg.jpg
Solution
The question says that there is a payload hidden in the image file and is password protected.
steghide extract -sf hackersteg.jpgTherefore, we can try it with steghide and extract the text file which contains the flag.
cat steganopayload26011.txtcat command is used to read the contents in the text file.
Last updated