Posted: . At: 11:51 AM. This was 9 years ago. Post ID: 7940
Page permalink. WordPress uses cookies, or tiny pieces of information stored on your computer, to verify who you are. There are cookies for logged in users and for commenters.
These cookies expire two weeks after they are set.


How to use steghide to embed a text file inside an image.


The steghide program is used to embed one image inside another. I will be showing you how to embed a text file inside an image and then set a passphrase to use when recovering the text file.

This is a simple example, I am embedding the file my.txt into a screenshot from a movie.

root@user:~# steghide embed -cf 1984-john-hurt.jpg -ef my.txt

Now it will ask me to set a passphrase.

root@user:~# steghide embed -cf 1984-john-hurt.jpg -ef my.txt 
Enter passphrase:

This is the passphrase that I use when I am extracting the embedded file.

If I want to extract the data, I use this command.

root@user:~# steghide extract -sf 1984-john-hurt.jpg 
Enter passphrase: 
the file "my.txt" does already exist. overwrite ? (y/n) y
wrote extracted data to "my.txt".

This is how easy it is to hide a text file inside an image.

This example shows how to embed an image inside an image. This is another useful way to transfer secret data.

root@user:~# steghide embed -cf orwell.jpg -ef images.jpeg 
Enter passphrase: 
Re-Enter passphrase: 
embedding "images.jpeg" in "orwell.jpg"... done

So, try this out for yourself and see how you go!


Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.