Steghide
Description: used to hide and retrieve files, files can be easily hidden using steganography by running something like
cat Dog.jpg secretmessage.zip > Dog2.jpgwhich hides the zip inside the jpg fileInstallation:
sudo apt-get install steghideUsage
To hide secretmessage.txt inside dog.jpg:
steghide embed -cf dog.jpg -ef secretmessage.txtembed: specifies operation-cf dog.jpg: cover file using dog.jpg-ef secretmessage.txt: embedded file using secretmessage.txt
To extract hidden file:
steghide extract -sf dog.jpgextract: specifies operation-sf dog.jpg: steganogrphy flag to specify file with potentially hidden data
Last updated