Skip to content

Pix-Veil is a powerful cli-tool for steganography in PNG images. It processes an arbitrary input file, compresses, encrypts and splits it in chunks which will be injected into a given set of input pngs

License

Notifications You must be signed in to change notification settings

slippyex/pix-veil

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ“· Pix-Veil

License Version

Pix-Veil is a tiny, yet powerful, command-line tool for steganography in PNG images. It allows you to hide files within PNG images securely using advanced Least Significant Bit (LSB) embedding, coupled with encryption and compression for enhanced security and efficiency.


🌟 Features

  • Advanced LSB Embedding: Hide data within the least significant bits of PNG images using customizable parameters.
  • Strong Encryption: Secure your data with AES-256-CBC encryption.
  • Compression: Reduce data size with Brotli compression before embedding.
  • Data Chunking and Distribution: Split data into chunks and distribute them across multiple images.
  • Encrypted Distribution Map: Keep track of data chunks with an encrypted distribution map embedded within an image.
  • Image Capacity Analysis: Analyze images for optimal data embedding based on tonal capacity.
  • Debugging Tools: Enable verbose logging and debug visuals for development and troubleshooting.
  • Cross-Platform: Compatible with Windows, macOS, and Linux.

πŸ“‹ Table of Contents


πŸš€ Installation

# Clone the repository
git clone https://github.com/slippyex/pix-veil.git

# Navigate to the project directory
cd pix-veil

# Install dependencies
deno install --allow-scripts=npm:[email protected]


πŸ› οΈ Usage

Pix-Veil provides a command-line interface with two primary commands: encode and decode.

Encoding

To hide a file within PNG images:

deno task pix-veil:encode \
  -i path/to/secret.file \
  -p path/to/png/folder \
  -o path/to/output/folder \
  --verbose

Options:

  • -i, --input <file>: Input file to hide.
  • -p, --png-folder <folder>: Folder containing PNG images to use.
  • -o, --output <folder>: Output folder to store the modified images.
  • -l, --log: If set, instead of a progress bar, the process provides a log output.
  • -v, --verbose: Enable verbose logging.
  • --max-chunks-per-png <number> Maximum number of chunks per PNG (Default: 16)
  • --max-chunk-size <number> Maximum size of each chunk in bytes (Default: 4096)
  • --min-chunk-size <number> Minimum size of each chunk in bytes (minimum 16, Default: 16)
  • --no-verify Skip verification step during encoding
  • --debug-visual: Enable debug visual blocks in images.

Decoding

To extract the hidden file from PNG images:

deno task pix-veil:decode \
  -i path/to/encoded/png/folder \
  -o path/to/output/folder \
  --verbose

Options:

  • -i, --input <folder>: Input folder containing the modified PNG images.
  • -o, --output <folder>: Output folder to save the extracted file.
  • -l, --log: If set, instead of a progress bar, the process provides a log output.
  • -v, --verbose: Enable verbose logging.

πŸ” Techniques Explained

Least Significant Bit (LSB) Steganography

LSB steganography involves modifying the least significant bits of image pixel values to embed hidden data without significantly altering the image appearance.

LSB Embedding Process

  • Data Preparation: The secret data is compressed and encrypted.
  • Data Splitting: The encrypted data is split into chunks.
  • Image Analysis: PNG images are analyzed for embedding capacity based on tonal values.
  • Data Embedding: Data chunks are embedded into the images using LSB manipulation.

Flowchart of LSB Embedding

flowchart TD
    A[Start Encoding Process] --> B[Read Input File]
    B --> C[Compress Data]
    C --> D[Encrypt Data with Password]
    D --> E[Split Encrypted Data into Chunks]
    E --> F[Read PNG Images from Folder]
    F --> G[Analyze Image Capacities]
    G --> H{Is Capacity Sufficient?}
    H -- No --> I[Error: Insufficient Capacity]
    H -- Yes --> J[Distribute Chunks Across Images]
    J --> K[Generate Distribution Map]
    K --> L[Encrypt and Compress Distribution Map]
    L --> M[Embed Chunks into Images using LSB]
    M --> N[Embed Distribution Map into Carrier Image]
    N --> O[Save Modified Images to Output Folder]
    O --> P[End Encoding Process]
Loading

LSB Manipulation Illustration

Example: Embedding Byte 0xDE into RGB Channels Using 2 Bits Per Channel

We want to hide 0xDE (which is 11011110 in binary) into the least significant bits (LSBs) of an RGB pixel, using 2 bits per channel.

Byte to hide:

  • 0xDE = 11011110

Now, split this byte into three 2-bit parts:

  1. Red channel: 11
  2. Green channel: 01
  3. Blue channel: 10

Initial RGB Pixel Values:

Let’s assume the initial RGB values of a pixel are as follows (in decimal and binary):

  • Red: 200 (binary: 11001000)
  • Green: 150 (binary: 10010110)
  • Blue: 100 (binary: 01100100)

Modifying the 2 LSBs of Each Channel:

We will embed the 2 bits for each channel into the two least significant bits of the original pixel values.

  1. Red channel: Embed 11 into the last two bits of Red (original: 11001000):

    • Original Red: 11001000 (200)
    • Modified Red: 11001111 (207)
  2. Green channel: Embed 01 into the last two bits of Green (original: 10010110):

    • Original Green: 10010110 (150)
    • Modified Green: 10010101 (149)
  3. Blue channel: Embed 10 into the last two bits of Blue (original: 01100100):

    • Original Blue: 01100100 (100)
    • Modified Blue: 01100110 (102)

Final RGB Values After Embedding:

  • Red: 207 (binary: 11001111)
  • Green: 149 (binary: 10010101)
  • Blue: 102 (binary: 01100110)

These RGB values now contain the byte 0xDE within their least significant bits.

graph TD
    subgraph Original Pixel
        R1[Red: 110010*00* - 200]
        G1[Green: 100101*10* - 150]
        B1[Blue: 011001*00* -100]
    end

    subgraph Modified Pixel After Embedding 0xDE
        R2[Red: 110011**11** - 207]
        G2[Green: 100101**01** - 149]
        B2[Blue: 011001**10** - 102]
    end

    Byte[0xDE 11011110]
    Byte --> R2
    Byte --> G2
    Byte --> B2
Loading

Explanation:

  • Original Pixel Channels: The original binary values of the pixel channels.
  • Bits to Embed: The 2-bit groups from the byte 0xDE.
  • Embedding: Each 2-bit group is embedded into the least significant bits (LSBs) of the channels, following the channel sequence RGB.
  • Modified Pixel Channels: The new binary values of the channels after embedding.

Details:

  • R1:
    • Original: 1001 1010
    • Embed 11 into LSBs:
      • Replace last 2 bits with 11: 1001 10**11**
  • G1:
    • Original: 0110 1011
    • Embed 01 into LSBs:
      • Replace last 2 bits with 01: 0110 10**01**
  • B1:
    • Original: 1110 0101
    • Embed 11 into LSBs:
      • Replace last 2 bits with 11: 1110 01**11**
  • R2:
    • Original: 1010 1100
    • Embed 10 into LSBs:
      • Replace last 2 bits with 10: 1010 11**10**

Data Encryption

  • Algorithm: AES-256-CBC.
  • Purpose: Ensures that even if the embedded data is extracted, it cannot be read without the correct password.
  • Process:
    • Generate a 256-bit key from the password using SHA-256.
    • Encrypt the compressed data with the generated key.
    • Prepend a random Initialization Vector (IV) to the encrypted data.

Data Compression

  • Algorithm: Brotli Compression.
  • Purpose: Reduces the size of the data to minimize the impact on the carrier images.
  • Benefits:
    • Fewer data to embed leads to less modification of the images.
    • Improves security by obfuscating the data patterns.

Data Chunking and Distribution

  • Chunking: The encrypted data is split into multiple chunks of variable sizes.
  • Distribution: Chunks are randomly distributed across different images and positions.
  • Benefits:
    • Increases security by scattering data.
    • Balances the load across multiple images to minimize distortion.

Distribution Map

  • Purpose: Keeps track of where each data chunk is embedded.
  • Security:
    • The distribution map is compressed and encrypted.
    • Embedded within one of the images using LSB.
  • Components:
    • Chunk IDs.
    • Corresponding image filenames.
    • Start and end positions.
    • Bits per channel and channel sequence used.

Flowchart of Data Chunking and Distribution

flowchart TD
    A[Start Data Chunking] --> B[Encrypted Data]
    B --> C[Determine Chunk Sizes]
    C --> D[Split Data into Chunks]
    D --> E[Analyze Image Capacities]
    E --> F{Enough Capacity for Chunks?}
    F -- No --> G[Error: Insufficient Capacity]
    F -- Yes --> H[Assign Chunks to Images]
    H --> I[Record Assignments in Distribution Map]
    I --> J[Encrypt and Compress Distribution Map]
    J --> K[End Data Chunking]
Loading

Diagram of Distribution Map Embedding

sequenceDiagram
    participant Encoder
    participant DistributionMap
    participant CarrierImage

    Encoder->>DistributionMap: Create Map of Chunk Locations
    Encoder->>DistributionMap: Encrypt and Compress Map
    Encoder->>CarrierImage: Embed Distribution Map using LSB
    CarrierImage->>Encoder: Distribution Map Embedded
    Encoder->>User: Save Carrier Image with Embedded Map
Loading

🀝 Contributing

Contributions are welcome! Please follow these steps:

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature/YourFeature).
  3. Commit your changes (git commit -m 'Add your feature').
  4. Push to the branch (git push origin feature/YourFeature).
  5. Open a Pull Request.

πŸ“„ License

This project is licensed under the MIT License. See the LICENSE file for details.


Made with ❀️ by slippyex


πŸ“ Additional Notes

  • Dependencies:
    • Deno v2
    • Sharp library for image processing
    • Commander for CLI interface
    • Inquirer for password prompt
    • Figlet for a fancy ASCII art logo
  • Security Considerations:
    • Ensure that the password used is strong and kept confidential.
    • Be aware of the legal implications of steganography in your jurisdiction.

Acknowledgments


ForTheBadge built-with-love

About

Pix-Veil is a powerful cli-tool for steganography in PNG images. It processes an arbitrary input file, compresses, encrypts and splits it in chunks which will be injected into a given set of input pngs

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks