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.
- 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.
# 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]
Pix-Veil provides a command-line interface with two primary commands: encode
and decode
.
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.
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.
LSB steganography involves modifying the least significant bits of image pixel values to embed hidden data without significantly altering the image appearance.
- 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 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]
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.
- 0xDE =
11011110
Now, split this byte into three 2-bit parts:
- Red channel:
11
- Green channel:
01
- Blue channel:
10
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
)
We will embed the 2 bits for each channel into the two least significant bits of the original pixel values.
-
Red channel: Embed
11
into the last two bits of Red (original:11001000
):- Original Red:
11001000
(200) - Modified Red:
11001111
(207)
- Original Red:
-
Green channel: Embed
01
into the last two bits of Green (original:10010110
):- Original Green:
10010110
(150) - Modified Green:
10010101
(149)
- Original Green:
-
Blue channel: Embed
10
into the last two bits of Blue (original:01100100
):- Original Blue:
01100100
(100) - Modified Blue:
01100110
(102)
- Original Blue:
- 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
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**
- Replace last 2 bits with
- Original:
- G1:
- Original:
0110 1011
- Embed
01
into LSBs:- Replace last 2 bits with
01
:0110 10**01**
- Replace last 2 bits with
- Original:
- B1:
- Original:
1110 0101
- Embed
11
into LSBs:- Replace last 2 bits with
11
:1110 01**11**
- Replace last 2 bits with
- Original:
- R2:
- Original:
1010 1100
- Embed
10
into LSBs:- Replace last 2 bits with
10
:1010 11**10**
- Replace last 2 bits with
- Original:
- 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.
- 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.
- 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.
- 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 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]
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
Contributions are welcome! Please follow these steps:
- Fork the repository.
- Create a new branch (
git checkout -b feature/YourFeature
). - Commit your changes (
git commit -m 'Add your feature'
). - Push to the branch (
git push origin feature/YourFeature
). - Open a Pull Request.
This project is licensed under the MIT License. See the LICENSE file for details.
Made with β€οΈ by slippyex
- 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.
- Icons made by Freepik from www.flaticon.com.
- Inspired by various steganography techniques and tools.