Metadata-Version: 2.4
Name: shadowbits
Version: 1.0.1
Summary: Powerful steganography tool for hiding files in images and audio using LSB techniques
Author-email: kaizoku73 <ultimate0134@gmail.com>
Maintainer-email: kaizoku73 <ultimate0134@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/kaizoku73/ShadowBits
Project-URL: Repository, https://github.com/kaizoku73/ShadowBits
Project-URL: Bug Reports, https://github.com/kaizoku73/ShadowBits/issues
Project-URL: Documentation, https://kaizoku.gitbook.io/steganography
Project-URL: LSB Image Docs, https://kaizoku.gitbook.io/steganography/lsb-for-image
Project-URL: LSB Audio Docs, https://kaizoku.gitbook.io/steganography/lsb-for-audio
Keywords: steganography,lsb,least-significant-bit,image-steganography,audio-steganography,cryptography,security,png,wav,file-hiding,aes-encryption,bits-manipulation
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Multimedia :: Sound/Audio
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: future>=0.18.0
Requires-Dist: Pillow>=8.0.0
Requires-Dist: pycryptodome>=3.15.0
Dynamic: license-file

# ShadowBits 🔒

A powerful steganography tool that allows you to hide files within images and audio files using LSB (Least Significant Bit) techniques. ShadowBits supports both embedding and extraction operations with optional AES encryption for enhanced security.

## Features

- **Image Steganography**: Hide files within PNG images using LSB manipulation
- **Audio Steganography**: Embed files in WAV audio files 
- **AES Encryption**: Optional encryption layer for embedded data
- **Key-based Randomization**: Uses secret keys to randomize bit placement for enhanced security
- **Automatic File Type Detection**: Detects and preserves original file types during extraction
- **Format Validation**: Validates PNG images and WAV audio files before processing
- **Collision Prevention**: Automatically handles filename conflicts during output
- **Comprehensive Error Handling**: Robust error handling for various failure scenarios

## Quick Start

### Prerequisites

```bash
pip install -r requirements.txt
```
### Installation

```bash
pip install shadowbits
```

### One-Line Installation

```bash
# System-wide (with sudo)
curl -sSL https://raw.githubusercontent.com/kaizoku73/ShadowBits/main/install.sh | sudo bash

# User installation (no sudo)
curl -sSL https://raw.githubusercontent.com/kaizoku73/ShadowBits/main/install.sh | bash
```

### Uninstallation

```bash
# To uninstall Resono (no sudo):
curl -sSL https://raw.githubusercontent.com/kaizoku73/ShadowBits/main/uninstall.sh | bash

# To uninstall Resono (With sudo):
curl -sSL https://raw.githubusercontent.com/kaizoku73/ShadowBits/main/uninstall.sh | sudo bash

```

## Usage

ShadowBits provides a command-line interface with four main operations:

### Image Operations

#### Embed a file in an image
```bash
shadowbits img embed --in secret.txt --cover image.png --key mysecretkey
```

#### Extract from image
```bash
shadowbits img extract --stego stego_image.png --key mysecretkey
```


### Audio Operations

#### Embed a file in audio
```bash
shadowbits aud embed --in secret.pdf --cover music.wav --key myaudiokey
```

#### Extract from audio
```bash
shadowbits aud extract --stego stego_audio.wav --key myaudiokey
```

## How It Works

### LSB Steganography
ShadowBits uses the Least Significant Bit (LSB) method to hide data:

- **Images**: Modifies the least significant bit of RGB color channels in a randomized order
- **Audio**: Modifies the least significant bit of audio sample data in a randomized pattern

## What is LSB and how does it work?
For a detailed explanation on LSB steganography and how it works, check out this article: https://kaizoku.gitbook.io/steganography

### Security Features

1. **Key-based Randomization**: Uses PRNG seeded with your secret key to randomize bit placement
2. **Automatic AES Encryption**: All data is encrypted using AES-EAX mode with SHA-256 key derivation
3. **Data Integrity Markers**: Uses start/end markers to ensure data completeness
4. **Format Validation**: Verifies PNG/WAV file formats before processing
5. **File Type Detection**: Automatically detects original file type using magic bytes for proper restoration

## Hidden Files
The tool can hide any file type and will automatically detect and restore the original format using magic byte signatures, including:
- Images: JPG, PNG, GIF, BMP, WebP, ICO
- Documents: PDF, DOC, ZIP archives
- Audio: MP3, OGG, FLAC, WAV
- Video: MP4, M4V, AVI
- Archives: ZIP, GZ, RAR, 7Z
- Text/Code: HTML, XML, Python, C, JavaScript, plain text
- Binary files: Any other format as .bin


## Limitations

- **Image capacity**: Limited by image size (3 bits per pixel for RGB images)
- **Audio capacity**: Limited by audio file length (1 bit per sample)
- **File size**: To hide larger files, you need larger cover media file

## Examples

### Hide a document in a photo
```bash
shadowbits img embed --in document.pdf --cover vacation.jpg --key family2023
```

### Extract the hidden document
```bash
shadowbits img extract --stego stego_file.png --key family2023
```

### Hide source code in music
```bash
shadowbits aud embed --in source_code.zip --cover favorite_song.mp3 --key coding123
```

## Security Considerations

- **Key Management**: Use strong, unique keys for each operation
- **Key Security**: The same key is used for both encryption and randomization
- **Cover Selection**: Choose cover files with sufficient capacity for your payload
- **File Format**: Ensure cover images are PNG and audio files are WAV
- **Key Reuse**: Avoid reusing keys across different files

## Error Handling

ShadowBits includes comprehensive error handling for:
- Invalid file formats
- Insufficient cover media capacity  
- Corrupted embedded data or invalid markers
- AES Decryption failures (wrong key or corrupted data)
- Missing files or permissions

## Contributing

Contributions are welcome! Please feel free to submit issues, feature requests, or pull requests.

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## Disclaimer

This tool is for educational and legitimate purposes only. Users are responsible for ensuring compliance with applicable laws and regulations when using steganography techniques.

## Support

If you encounter any issues or have questions, please open an issue on GitHub.

---

**ShadowBits** - Where your secrets hide in plain sight 👁️‍🗨️

**Made by kaizoku**
