Ladies and Gentlemen, welcome to the world of Spies šŸ•µļø.

In the movie Uncharted (great movie by the way), Tom Holland and his brother have a secret form of communication. They would write a message on a plain postcard with special ink that became invisible and then send it to the other person.

On the outside, it seemed like another plain old postcard. But if a lighter was lit just behind the paper, the ink would reappear, and a new message would be found šŸ”„.

This is one of the coolest hidden information tricks seen in movies. But what if we could do this on computers?

Well, turns out we sorta can. Using Steganography.

Disclaimer: This concept can be used for both good and bad. The content of this article is for educational purposes only and is not to be used to play pranks, or harm people and infrastructure.

And with that out of the way, hereā€™s what weā€™re going to explore in this article:

  1. What is Steganography?
  2. Types of Steganography ā€“ Text, Image, Video, Audio, Network
  3. Image steganography using Steghide

What is Steganography?

Steganography is the art of hiding secret data in plain sight. It sounds kind of counter-intuitive, but youā€™d be surprised how effective it is.

Hiding things such as source code, passwords, IP addresses, and other confidential information in pictures, music, or other random files tends to be the last place anyone would think of finding them.

You should note that steganography and cryptography are not mutually exclusive from each other. One may contain elements of the other or both. For example, you could perform steganography with an encryption algorithm or password, as youā€™ll find out soon.

Types of Steganography

There are various types of steganography, and weā€™ll look at five of them in this tutorial.

Text Steganography

This form involves hiding a message within a text. A common way to do this is substitution. It involves replacing certain characters with others and then substituting them back to retrieve the original data.

For example, take the following text.

Thi follow eng tixt contaens a sicrit missagi

Doesnā€™t really make sense right? But what if we replace the iā€™s with eā€™s and the eā€™s with iā€™s?

The follow ing text contains a secret message

I think thatā€™s a little easier on the eyes. This is a pretty easy example, but there are much more complicated ones and even some you could come up with on your own.

Image Steganography

Frankly, this is my favourite. It involves hiding data behind digital images. There are various techniques for image steganography which include the Least Significant Bit technique, Masking and Filtering, and Coding and Cosine Transformation.

Take a look at the two images below and spot the difference:

image-75
Groot on Linux Ā¦ Credit: Mercury

Basically, no human on earth can tell the visual difference. But if you take a closer look at the file detailsā€¦

image-76
Comparing the images Ā¦ Credit: Mercury

The only difference is the size of the images. Thatā€™s because the one on the right is hiding 260 words of text in it. How cool is that?

Video Steganography

In Video steganography, you can literally hide entire videos inside another video. Videos are basically a sequence of images with audio playing as the sequence progresses. This type of steganography allows each video frame to encode an image of the one you want to hide.

This technique can also be used to hide text as demonstrated in the software Steganosaurus by James Ridgeway. He shows how it works in this video.

Audio Steganography

This type of steganography enables hidden messages to be encoded inside an audio file. A common technique used in this is called Backmasking. Backmasking is hiding a message in the audio file and it can only be heard when played backwards.

The famous rapper, Eminem, did some backmasking in the song ā€˜Stimulateā€™ back in 2002.

Network Steganography

This is relatively rare, but nevertheless, it is a technique in which messages are passed by hiding them in network traffic. The messages could be found in the payload or headers of data packets when captured and analysed by the receiver.

Now letā€™s take a look at how to do some image steganography.

Steganography using Steghide

Steghide is an open source image steganography tool that uses the least significant bit (LSB) method to hide data in images.

Images are made up of pixels, which are made up of bits. The bit depth determines how many colours are present in an image. The higher the bit depth, the more colourful the image tends to look.

What LSB does is change the last bit of each byte (or pixel) in the image to one that represents the data you want to hide. This changes the image data, but if done properly is not perceivable. The higher the bit depth and resolution, the more data can be stored in the image.

Now that you understand how it works, letā€™s play a little hide and seek (no pun intended šŸ‘€).

First weā€™ll be needing a few things:

  1. A Linux OS
  2. An Internet Connection
  3. An Image
  4. A Text file

Install Steghide

First we need to install Steghide. Open your terminal and run the following command to do that:

sudo apt install steghide

You can always run steghide --help to get the command list to see all your options.

Get your image ready

Next, have an image and a text file in a directory. My files are ā€˜information.txtā€™ and ā€˜image.pngā€™. Iā€™ve also put some text in the file to hide in the image later.

image-77
Setting up files Ā¦ Credit: Mercury

Open up your terminal again and go to the directory you stored the files. Mine is in ~/Documents/steganography_tutorial.

image-78
Looking for the files Ā¦ Credit: Mercury

Create a new image

Next, run the following command to create a new image that contains the text file you want hide.

steghide embed -ef <data> -cf <image> -sf <stego_image> -v

Letā€™s take a look at the command:

  • steghide ā€“ We specify the tool to use
  • embed ā€“ Tells the tool we want to embed data
  • -ef ā€“ Embed file, specifies the file to hide
  • -cf ā€“ Cover file, specifies the cover image
  • -sf ā€“ Stego file, creates a duplicate of the original image with the embedded file in it
  • -v ā€“ Verbose, gives us more information about the process

When the command is run, youā€™ll be asked to enter a password. If you want an extra layer of security, you might want to do this. If you donā€™t, just hit enter twice. Hereā€™s the result of what I ran:

image-79
Embedding the information Ā¦ Credit: Mercury

Inspect the new file

Now letā€™s take a look at the new file.

image-80
Comparing the images side by side Ā¦ Credit: Mercury

Thereā€™s seems to be no difference. We can take a closer look with a site called diffchecker.com.

image-81
Comparing the images details Ā¦ Credit: Mercury

Extract the data

The stego file is slightly bigger than the original because it contains information. We can extract the data from the stego file using the command below.

steghide extract -sf <stego_image> -xf <extracted_data>

Letā€™s review the command above:

  • -sf ā€“ stego file, the image containing hidden data
  • -xf ā€“ extract file, the file with extracted data

Below is the screenshot from running the command. The extracted text is also shown below.

image-82
Extracting the information Ā¦ Credit: Mercury

If you extracted the text, Congratulations šŸŽ‰šŸŽŠ. You have successfully hidden and extracted the text from the image. You can do this with a number of things, even whole books.

Using a different tool called Stegcore, I hid a text file containing Quincy Larsonā€™s new book, ā€œHow to Learn to Code & Get a Developer Jobā€, behind an image of the bookšŸ”.

Hereā€™s an excerpt from the book.

image-83
An excerpt from the book Ā¦ Credit: Quincy Larson

And just like before, the text was embedded into a new image. Here is the original and the stego image side by side.

image-84
The original image compared to the stego image Ā¦ Credit: Mercury

And as expected, the stego image is slightly larger in size than the original.

image-85
The image details side by side Ā¦ Credit: Mercury

Talk about hiding a book behind a book (bad joke, I know šŸ¤§). If you want to try it out, you can check out the Github repository or the app.

Conclusion

Youā€™ve learned what steganography is and how to implement it using tools. Keep in mind that steganography is a tool and can be used for both good and bad. Companies can hide sensitive information using these means. On the other hand, a hacker could use it to hide malicious code.

Once again, this tutorial is for educational purposes only and is to be used to help and defend information from black hat hackers. Stay safe in the online jungle and happy hacking šŸ™ƒ.

Acknowledgements

Thanks to Anuoluwapo Victor, Chinaza Nwukwa, Holumidey Mercy, Favour Ojo, Georgina Awani, and my family for the inspiration, support and knowledge used to put this together. I appreciate all of you.

If you want articles similar to this one, hit me up on Upwork or read more of my articles here.

Cover image credit: Abstract Data Cube Ā¦ Credit: Shubham Dhage.