Skip to content

Phon3x/phon3x-art

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

25 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Phon3x-ART: Professional Steganography Tool

Advanced F5 Steganography with AES-256 Encryption
Hide data in plain sight with military-grade security

Demo

Python License Platform Steganography


πŸš€ Overview

Phon3x-ART is a professional-grade steganography tool that implements the F5 algorithm with AES-256 encryption to securely hide sensitive data within JPEG images. Unlike basic steganography tools, Phon3x-ART is designed to survive modern content platforms and maintain data integrity.

Originally developed for personal use, it enables:

  • Uploading images to social platforms like Facebook and Messenger
  • Storing encrypted data on public or private cloud drives
  • Sending secret messages safely over common messaging platforms

Table of Contents


πŸ”₯ Key Advantages

βœ… Bypasses Platform Detection - Successfully bypasses Facebook upload processing, Messenger file handling, ImgBB compression, and other common content platforms
βœ… Private Hosting Compatible - Works flawlessly with self-hosted servers, private drives, and cloud storage
βœ… Military-Grade Encryption - AES-256 with PBKDF2 key derivation ensures maximum security
βœ… Compression Resistant - Embedded data survives JPEG recompression and platform processing
βœ… Dual-Mode Operation - Professional F5 via OutGuess or robust fallback method


✨ Features

Feature Description Advantage
πŸ” AES-256 Encryption Military-grade encryption for hidden data Unbreakable security layer
πŸ›‘οΈ True F5 Algorithm Uses OutGuess for authentic F5 implementation Maximum stealth and capacity
πŸ’ͺ Platform Bypass Survives Facebook, Messenger, ImgBB processing Real-world usability
🎲 Password-Based Unique embedding for each password Plausible deniability
πŸ“ˆ Variable Payload Hide text or files up to image capacity Flexible usage
πŸ” Auto-Detection Smart extraction without additional parameters User-friendly operation
🌐 Cross-Platform Works on Kali Linux, Ubuntu, Fedora and other Linux distros Wide compatibility

🎯 Why Phon3x-ART

Traditional steganography tools fail on modern platforms due to aggressive recompression and processing. Phon3x-ART is specifically engineered to:

  • Bypass Facebook's image processing pipeline
  • Survive Messenger's file compression
  • Evade ImgBB's optimization algorithms
  • Work on private hosting solutions and cloud drives
  • Maintain integrity through multiple upload/download cycles

🌐 Platform Bypass Capabilities

Last Updated

Phon3x-ART has been tested and proven to function across multiple platforms while preserving payload integrity.

Platform Status Badge Notes
Facebook Uploads Working Survives FB's image processing
Messenger Files Working Maintains integrity through compression
ImgBB Working Bypasses optimization algorithms
Private Hosting Working Works on any self-hosted solution
Cloud Drives Working Google Drive, Dropbox, and similar
Discord Limited Requires original quality uploads
Telegram Limited May fail under heavy compression

πŸ“Š Performance Metrics

Metric πŸ–Ό OutGuess Mode πŸ”„ Fallback Mode
Capacity Up to 15% of image Up to 5% of image
Compression Resistance Excellent Good
Detection Resistance Very High Moderate
Platform Survival Rate 95%+ 80%+
Processing Speed Fast Very Fast

πŸ“¦ Installation

⚑ Quick Installation

For the fastest setup, use our one-line installer:

# One-command installation (Kali/Ubuntu)
curl -sSL https://raw.githubusercontent.com/Phon3x/Phon3x-ART/main/install/install_phon3x-art.sh | bash
# One-command installation (Fedora)
curl -sSL https://raw.githubusercontent.com/Phon3x/Phon3x-ART/main/install/install_Fedora_phon3x-art.sh | bash

Or download and run manually:

# Download the installer from the repository
wget https://raw.githubusercontent.com/Phon3x/Phon3x-ART/main/install/install_phon3x-art.sh

# Make executable and run
chmod +x install_phon3x-art.sh
sudo ./install_phon3x-art.sh

The Phon3x-ART installer automatically performs the following steps:

Step Action Result
1️⃣ System Check Verifies Python 3.8+ and dependencies
2️⃣ Dependencies Installs required system packages
3️⃣ Project Setup Creates ~/Phon3x-ART/ directory
4️⃣ Virtual Environment Sets up isolated Python environment
5️⃣ Application Download Fetches latest Phon3x-ART scripts
6️⃣ Python Packages Installs Pillow, PyCryptodome, NumPy
7️⃣ Desktop Integration Creates launcher and menu entry
8️⃣ PATH Setup Adds phon3x-art command to terminal
9️⃣ OutGuess (Optional) Installs professional F5 steganography engine
πŸ”Ÿ Verification Validates installation and shows usage

After completing these steps, Phon3x-ART is ready for use directly from the terminal or desktop launcher.

πŸ”§ Manual Installation

# Create the environment
python3 -m venv phon3x-art

# Activate it
source phon3x-art/bin/activate

# Clone repository
git clone https://github.com/Phon3x/Phon3x-ART.git
cd Phon3x-ART

# Install Python dependencies
pip install pillow pycryptodome numpy

# Run the tool
python3 phon3x-art.py

# Install OutGuess
python3 phon3x-art.py
# choose Option 3

## I provide full manual install instruction or input 'y' and it will automatically install OutGuess

πŸ—‘οΈ Uninstall

To completely remove Phon3x-ART from your system, run the following commands:

# Download the uninstaller
wget https://raw.githubusercontent.com/Phon3x/Phon3x-ART/main/install/uninstall_phon3x-art.sh

# Make it executable
chmod +x uninstall_phon3x-art.sh

# Run the uninstaller
sudo ./uninstall_phon3x-art.sh

πŸ—οΈ Technical Architecture

Phon3x-ART Architecture
β”œβ”€β”€ πŸ” Encryption Layer (AES-256-CBC)
β”‚   β”œβ”€β”€ PBKDF2 Key Derivation (100k iterations)
β”‚   β”œβ”€β”€ Secure Random IV Generation
β”‚   └── PKCS7 Padding
β”‚
β”œβ”€β”€ πŸ–ΌοΈ Steganography Layer
β”‚   β”œβ”€β”€ 🎯 Professional Mode (OutGuess F5)
β”‚   β”‚   β”œβ”€β”€ DCT Coefficient Manipulation
β”‚   β”‚   β”œβ”€β”€ Matrix Encoding
β”‚   β”‚   └── Error Correction
β”‚   β”‚
β”‚   └── πŸ› οΈ Fallback Mode (Spatial Domain)
β”‚       β”œβ”€β”€ 2nd LSB Manipulation
β”‚       β”œβ”€β”€ Password-Based Permutation
β”‚       └── 2Γ— Repetition Error Correction
β”‚
└── πŸ§ͺ Integrity Layer
|    β”œβ”€β”€ CRC32 Checksum Validation
|    β”œβ”€β”€ Payload Length Verification
|    └── Auto-Detection Algorithms
β”‚
└── πŸ“¦ Installation System
    β”œβ”€β”€ Automatic Dependency Management
    β”œβ”€β”€ Virtual Environment Isolation
    β”œβ”€β”€ Desktop Menu Integration
    └── Clean Uninstall Support

🚨 Legal & Ethical Use

Legal Ethics Responsibility

Phon3x-ART is provided for legitimate purposes only. Users are responsible for complying with all applicable laws.

βœ… Allowed Uses:  
- Privacy protection  
- Security research  
- Educational use  
- Authorized penetration testing  
- Digital forensics training  

❌ Prohibited: 
- Illegal activities  
- Unauthorized data access or surveillance  

> Note: Misuse may violate laws. Authors are not liable for unlawful use.

⭐ Support

If you find Phon3x-ART useful, you can support the project by:

  • ⭐ Starring the repository on GitHub
  • πŸ› Reporting issues or bugs
  • πŸ’‘ Suggesting features or improvements
  • πŸ”„ Sharing with the community
  • πŸ“š Contributing to the documentation

About

Professional F5 steganography tool with AES-256 encryption. Provide military-grade security! Hides data in JPEG images that survives Facebook, Messenger, and other platform processing.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors