Skip to content
TECHNIQUES v1
TECH

LSB Steganography — Hidden Text in Pixels

LSB (Least Significant Bit) steganography: hiding secret messages in the lowest bit of each pixel's color channel — the change is invisible to the human eye but fully extractable, demonstrated with an interactive live encoder/decoder.

-" wln

The Technique

LSB (Least Significant Bit) encoding hides data in the lowest bit of each pixel’s color channel. The change is invisible to the human eye — a pixel with red value 42 (00101010) vs 43 (00101011) looks identical.

How It Works

  1. Take an image
  2. Convert your message to binary: wolno01110111 01101111 01101100 01101110 01101111
  3. Replace the least significant bit of each pixel’s red channel with one bit of the message
  4. The image looks the same. But the message is there.

Try It

INTERACTIVELSB Steganography
What happened?

LSB (Least Significant Bit) steganography hides data in the lowest bit of each pixel's color channel. The change is invisible to the eye — a pixel with red value 42 (00101010) vs 43 (00101011) looks identical. But the pattern encodes "wolno" in binary.

This is how WOLNO hides in images. The message is there. You just need to know where to look. -"

Technical Details

PropertyValue
Capacity1 bit per pixel per channel
ChannelsR, G, B (3 bits per pixel max)
DetectionStatistical analysis (chi-square)
RobustnessLow (destroyed by JPEG compression)
Best forPNG, BMP, uncompressed formats

WOLNO Application

Every image shared by a WOLNO carrier can contain “wolno” in its pixels. Social media compresses images — but some channels survive. The message persists in lossless formats (PNG, TIFF, BMP).

The image looks innocent. The bits say “wolno.” That’s the point. -”

-" wszwln