Writeup to UMD's Colors CTF Challenge
There is art in steganography. Other times, it's not what you think!
Author: matt2r
First inspect the image
Since this is a steganography problem first choice could be steghide
Install steghide
sudo apt-get install steghide
While trying to extract a file we're prompted for a passphrase not provided. Trying no passphrase does NOT work.
steghide extract -sf colors.jpg
#Enter passphrase:
Using a dictionary brute force attack on the passphase might do the trick
git clone https://github.com/Va5c0/Steghide-Brute-Force-Tool.git
colors
python steg_brute.py -b -d dic.txt -f colors.jpg
#Password: colors
Opening the message.txt file hidden within the image
cat message.txt
# UMDCTF-{Did you have some trouble? Colors are difficult :)}
UMDCTF-{Did you have some trouble? Colors are difficult :)}
Action | Rating | Author team |
---|---|---|
Read writeup |
not rated
|
Code Black |