A steganography tool for securely hiding messages within images.
This tool combines steganography and cryptography to provide a secure way to hide sensitive messages within image files. Using the Least Significant Bit (LSB) technique, it embeds data in image pixels with minimal visual impact, while offering optional encryption and compression.
- Message Hiding: Embed text messages inside image files using LSB steganography
- Message Extraction: Extract hidden messages from modified images
- AES Encryption: Optional AES-GCM encryption on the hidden message for enhanced security
- Data Compression: Automatic compression when beneficial
- CLI Interface: Easy-to-use command-line interface
- Noise Addition: Random noise addition to unused bits for better security
Install Stega-Crypt directly from PyPI:
pip install stega-cryptstega-crypt provides a simple command-line interface with the following commands:
stega-crypt about# Hide a direct message
stega-crypt encode image.png --message "This is a secret message"
# Hide a message from a text file
stega-crypt encode image.png --message-path secret.txt
# Hide a message with compression
stega-crypt encode image.png --message "Secret message" --compress
# Hide a message with encryption
stega-crypt encode image.png --message "Secret message" --encrypt
# Hide a message with custom output path and filename
stega-crypt encode image.png --message "Secret message" --output-path /path/to/folder --image-name image-secret# Extract and display a message
stega-crypt decode image-secret.png
# Extract a message and save to file
stega-crypt decode image-secret.png --save-message
# Extract an encrypted message
stega-crypt decode image-secret.png --decrypt
# Extract a message with custom output path and filename
stega-crypt decode image-secret.png --save-message --output-path /path/to/folder --message-name extractedYou can increase output verbosity using the -v or --verbosity option:
stega-crypt -v encode image.png --message "Secret message" # Informational messages
stega-crypt -vv encode image.png --message "Secret message" # Debug messages-
Encoding Process:
- If compression is requested, the message is optionally compressed if it reduces size
- If encryption is requested, the message is encrypted using AES-GCM with a password-derived key
- The message is converted to binary and embedded in the least significant bits of image pixels
- Random noise is added to unused LSBs to make detection more difficult
- The modified image is saved to the specified location
-
Decoding Process:
- The LSB of each pixel is extracted from the image
- The binary message is rebuilt and converted back to text
- If compression was used, the message is decompressed
- If encryption was used, the message is decrypted using the provided password
- The message is displayed or saved to a file
- AES-GCM Encryption: Military-grade encryption with authentication
- PBKDF2 Key Derivation: Secure password-to-key derivation with salt
- LSB Steganography: Visually imperceptible changes to the image
- Random Noise: Addition of random bit flipping in unused LSBs to deter statistical analysis
- Data Compression: Optional compression to reduce the steganographic footprint
- Python 3.10+
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.