capture the :flag:
LSB steganography
Description
It's always in the place you least expect
Hints:
LSB
RGB
If you have found something previously, try looking again
Remember to get the full image
author: spamakin
Solution
The EXIF data on the image contains an interesting description.
It says LSBs(Pixels[1337:])
. Hmm... maybe it's telling us to get the LSBs of everything after the 1337th pixel.
My initial method was to go row by row, left to right (like reading English).
This did not yield any meaningful results.
Plugging it into a steganography tool, like StegOnline, helps us to figure out what's going on. In all of the 0th-bit (LSB) planes, there appeared to be some data hidden on the flag pole.
That explains! The pixels were meant to be read column-by-column instead.
Let's rearrange the pixels array to go column-by-column:
Now, we can read the LSBs of each pixel to get the hidden data.
We can see the flag right at the beginning.
Last updated
Was this helpful?