Investigate image metadata
Use command
file image.pngUse command
exiftool image.pngUse command
xxd image.pngUse command
strings image.pngUse tool binwalk to search binary images for embedded files and executable code:
binwalk image.pngTo extract the file:
binwalk -e image.png
Use command:
steghide extract -sf image.pngUpload the file to it
Bruteforce the password and extract contents of an image:
stegseek -sf image.png /path/to/wordlist
# Then if it extracts something do
file whatever.file # to know what is itUse command
steghide info image.pngInspect audio files (like
.wavfiles) with Sonic VisualizerClick on
Layer > Add Spectrogram

Now set the scale to dB^2 and the colour to White on Black

If you find a corrupted image (checking the file header of the image which should be
\x89x50\x4Ex47), the try this command:
If you have two strings in different formats, try this python script:
You also have the tool stegsolve
Install with:
Use it with:
java -jar stegsolve.jarYou might also need to search for a web in WaybackMachine
Open
.pcapfiles with wireshark and analyze them
Last updated