Secure Python encryption and execution framework with cross-platform support
Project description
๐ถ๏ธ SHADOWSEAL - Encrypt. Execute. Never Expose.
๐ฃ What is ShadowSeal? ShadowSeal isn't just a tool โ it's an ideology. Made for those who encrypt not to hide, but to rule.
- Turns
.pyfiles into undecodeable yet runnable binaries. - Math-based transformation โ no marshal, no base64, no mercy.
- Uncrackable by AI, LLMs, or even the original author.
- No decryptor exists. That's the point.
โ๏ธ How It Works - Real-Time Cross-Platform System
graph TD
subgraph "๐ Real-Time Detection"
A[๐ Original .py file] --> B{๐ค Platform Scanner}
B -->|Android/Termux| C[๐ฑ ARM Optimizer]
B -->|Linux| D[๐ง Cython + Rust Engine]
B -->|Windows| E[๐ช Windows API]
B -->|macOS| F[๐ Apple Silicon]
end
subgraph "โก Live Encryption Engine"
C --> G[๐ Math-Based Encryption]
D --> G
E --> G
F --> G
G --> H[๐งฎ Character Randomization]
H --> I[โ๏ธ Trigonometric Functions]
I --> J[๐ Encrypted .shc file]
end
subgraph "๐ฏ Real-Time Execution"
J --> K{๐ Platform Runtime}
K -->|Android| L[๐ฑ Termux Execution]
K -->|Linux| M[๐ง Native Runtime]
K -->|Windows| N[๐ช Windows Runtime]
K -->|macOS| O[๐ macOS Runtime]
end
subgraph "๐ก๏ธ Security Layer"
J -. ๐ซ Decryption Not Possible .-> P[โ Mathematical Exile]
J -. ๐ Hardware Binding .-> Q[๐ก๏ธ Platform-Specific ID]
end
style A fill:#ff6b6b,stroke:#ff4757,color:#fff
style J fill:#3742fa,stroke:#2f3542,color:#fff
style P fill:#ff4757,stroke:#ff3838,color:#fff
style Q fill:#5f27cd,stroke:#341f97,color:#fff
style L fill:#00d2d3,stroke:#009432,color:#fff
style M fill:#ffa502,stroke:#ff6348,color:#fff
style N fill:#70a1ff,stroke:#5352ed,color:#fff
style O fill:#7bed9f,stroke:#2ed573,color:#fff
๐ Live System Architecture
graph LR
subgraph "๐ Cross-Platform Detection"
A[File Input] --> B[Platform Scanner]
B --> C[Android/Termux]
B --> D[Linux]
B --> E[Windows]
B --> F[macOS]
end
subgraph "โก Real-Time Processing"
C --> G[ARM Optimization]
D --> H[Cython Engine]
E --> I[Windows API]
F --> J[Apple Silicon]
G --> K[Encryption Pipeline]
H --> K
I --> K
J --> K
end
subgraph "๐ฏ Live Execution"
K --> L[Encrypted Output]
L --> M[Cross-Platform Runtime]
M --> N[โ
Executes Normally]
end
subgraph "๐ก๏ธ Security Matrix"
L --> O[๐ Hardware Binding]
L --> P[๐ก๏ธ Anti-Debugging]
L --> Q[๐ซ No Decryptor]
end
style A fill:#ff9ff3,stroke:#f368e0,color:#000
style K fill:#54a0ff,stroke:#2e86de,color:#fff
style N fill:#5f27cd,stroke:#341f97,color:#fff
style O fill:#ff6b6b,stroke:#ff4757,color:#fff
style P fill:#ffa502,stroke:#ff6348,color:#fff
style Q fill:#ff4757,stroke:#ff3838,color:#fff
๐ง Features
| Feature | Status |
|---|---|
Encrypts readable .py files |
โ Yes |
| Output is still executable | โ Yes |
| Decryption possible? | โ Never |
| AI & LLM decoding resistance | โ Yes |
| Human reverse-proof | โ Yes |
| Cross-platform (Win/Linux/Android) | โ Yes |
๐ฆ Installation
pip install shadowseal
or from source:
git clone https://github.com/AFTeam-Owner/shadowseal.git
cd shadowseal
pip install .
๐ Encrypt Your File
shadowseal encrypt script.py -o output.shc
shadowseal run output.shc
โก๏ธ Still runs.
๐ซ Cannot be reversed.
โ
Remains yours.
๐ป Terminal Simulation
> shadowseal encrypt script.py -o output.shc
> shadowseal run output.shc
๐ Encrypting with advanced math...
โ
Saved to brain.py
๐ฅ Launching encrypted code...
๐๏ธ Source Visibility: ZERO
๐งฌ Execution Preview
๐ Cross-Platform Support
โ Supported Platforms
| Platform | Status | Notes |
|---|---|---|
| Linux | โ Full Support | All distributions (Ubuntu, Debian, Arch, etc.) |
| Android | โ Full Support | Termux, Pydroid, QPython |
| Windows | โ Full Support | Windows 7+ (x86/x64) |
| macOS | โ Full Support | Intel & Apple Silicon |
| iOS | โ Limited Support | Pythonista, Pyto |
| Raspberry Pi | โ Full Support | ARM architecture |
๐ฑ Android/Termux Special Features
- Termux Optimized: Works perfectly in Termux environment
- No Root Required: Runs without root access
- ARM Support: Optimized for ARM processors
- Storage Access: Handles Android storage permissions
- Hardware Binding: Uses Android-specific device identifiers
๐ง Platform-Specific Installation
Linux/macOS
pip install shadowseal
Windows
pip install shadowseal
Android (Termux) - Optimized (30s install)
# Fast installation (30 seconds)
pkg update && pkg upgrade
pkg install python git
pip install cryptography
pip install --no-deps shadowseal
Android (Termux) - Manual (Lightweight)
# Clone and install lightweight version
git clone https://github.com/AFTeam-Owner/shadowseal.git
cd shadowseal
pip install cryptography
python setup-termux.py install
Android (Pydroid)
pip install shadowseal
๐ Quick Start Guide
Basic Usage
# Encrypt a Python file
shadowseal encrypt script.py -o encrypted.shc
# Run encrypted file
shadowseal run encrypted.shc
# Decrypt back to Python (if password was used)
shadowseal decrypt encrypted.shc -o original.py
Advanced Usage
# Password-protected encryption
shadowseal encrypt script.py -o secure.shc -p mypassword
# Run with password
shadowseal run secure.shc -p mypassword
# Include command line arguments
shadowseal run encrypted.shc -- arg1 arg2 arg3
๐ ๏ธ Development & Build
Prerequisites
- Python 3.7+
- Rust (for optimal performance)
- Cython (optional, for speed)
Build from Source
git clone https://github.com/AFTeam-Owner/shadowseal.git
cd shadowseal
pip install -e .
Cross-Platform Build
# Build for all platforms
python -m build
# Install build dependencies
pip install build twine setuptools-rust
๐ Platform Detection
The package automatically detects the platform and uses the optimal configuration:
- Android: Pure Python implementation (no Cython compilation)
- Linux/Windows/macOS: Cython + Rust for maximum performance
- Termux: Special handling for Android storage and permissions
Environment Variables
# Force pure Python mode
export SHADOWSEAL_PURE_PYTHON=1
# Disable Cython compilation
export SHADOWSEAL_NO_CYTHON=1
๐ Performance Comparison
| Platform | Encryption Speed | Memory Usage | Notes |
|---|---|---|---|
| Linux (Cython) | 100% | 100% | Baseline |
| Android (Pure) | 85% | 110% | Optimized for ARM |
| Windows | 95% | 105% | Good performance |
| macOS | 98% | 102% | Excellent on M1/M2 |
๐งช Testing
Cross-Platform Test
python test_cross_platform.py
Manual Testing
# Test on current platform
python -c "from utils.systemcheck import get_system_info; print(get_system_info())"
# Test Android detection
python -c "from utils.systemcheck import is_android; print(f'Android: {is_android()}')"
๐ Version History
v1.0.5 - Cross-Platform Revolution
- โ Added Android/Termux support
- โ Cross-platform hardware binding
- โ Rust integration for performance
- โ Pure Python fallback for Android
- โ Enhanced anti-debugging for all platforms
v1.0.3 - Original Release
- โ Basic encryption/decryption
- โ Password protection
- โ Anti-debugging features
- โ Hardware binding
๐ก๏ธ Security Features (Cross-Platform)
Anti-Debugging
- ptrace detection (Linux/Android)
- Debugger process detection (All platforms)
- Environment variable checks
- Time-based detection
- Memory analysis detection
Hardware Binding
- Machine ID generation (platform-specific)
- Android device ID (Termux compatible)
- Windows registry checks
- macOS system profiler integration
๐ Support & Community
Platform-Specific Issues
- Android: Check Termux permissions and storage access
- Windows: Ensure Visual Studio Build Tools are installed
- macOS: May require Xcode command line tools
- Linux: Usually works out of the box
Contact
- Email: farhanbd637@gmail.com
- Telegram: https://t.me/AF_Team_Owner
- GitHub Issues: https://github.com/AFTeam-Owner/shadowseal/issues
๐ฏ Use Cases by Platform
Android/Termux
- Mobile encryption: Encrypt scripts on your phone
- Penetration testing: Secure payload delivery
- Education: Learn encryption on mobile devices
Linux Servers
- Production deployment: Secure production scripts
- CI/CD integration: Encrypt deployment scripts
- Docker containers: Lightweight encryption
Windows Development
- Enterprise security: Protect intellectual property
- Malware analysis: Secure analysis scripts
- Educational tools: Teaching encryption concepts
macOS Development
- iOS app development: Secure development scripts
- Security research: Cross-platform testing
- Academic research: Encryption studies
Version: 1.0.5 - Cross-Platform Edition | Built for the Underground Elite
๐ค Developer Identity โ Farhan Jihady (AFTeam Owner)
๐ง Who is Farhan?
- ๐ถ๏ธ Code-named: Monarch of Shadows
- ๐ฅ Founder: https://infinityprompt.com โ Where AI meets raw logic
- ๐ฃ Specialty: Telegram frameworks, secure API systems, AI-resistant encryption
- ๐ง Philosophy: Silent. Strategic. Ruthless in logic.
- ๐ค Based in: Bangladesh ๐ง๐ฉ | Mindset: Global
๐ ๏ธ Tech Stack & Interests
| Area | Tools / Skills |
|---|---|
| ๐ง AI + Logic | LLM API Systems, File-Based AI, OpenAI Proxy |
| ๐ Security | Python Encryption, Telegram Bot Firewalls, Key-based APIs |
| ๐ฆ File Architecture | Pure file systems, no-SQL data management |
| ๐ฌ Chatbots | Conversational AI with human-like depth |
| ๐ฏ Automation | Code runners, attackers, mass-senders, search engines |
| ๐จ Creative Dev | Markdown/GitHub identity, Deface UIs, Terminal vibes |
| ๐ป Platforms | Android (Termux), Linux, Windows, macOS, iOS (Pythonista) |
๐งฉ Project Highlights
- ๐ก๏ธ ShadowSeal โ Undecodable Python encryption (math-based, AI-proof)
- ๐ง InfinityPrompt โ Multi-model AI platform with role/reseller system
- ๐ฐ๏ธ Auto Bots โ Telegram bots that forward media, search data, and manage file backups
- ๐ Key Systems โ Full control: user limits, expiry, JSON history, hourly usage stats
๐ Developer's Oath
I don't build for everyone.
I build for the ones who never ask permission, who move in silence,
who write logic, not syntax โ
and who never leave a backdoor.
๐ Connect with the Operator
๐ Domain Portfolio
| ๐ข Primary Domains | ๐ Links | ๐ฏ Purpose |
|---|---|---|
| AFTeam | afteam.info | ๐ก๏ธ Security & Encryption Hub |
| Kotha Kabbo | kothakabbo.com | ๐ Bangladeshi Stories & Culture |
| Kotha Kabbo | kothakabbo.online | ๐ Global Storytelling Platform |
| With Bornaly | withbornaly.me | ๐ค Personal Portfolio & Projects |
| With Bornaly | withbornaly.online | ๐จ Creative Works Showcase |
| Bug Hunt Pro | bughuntpro.com | ๐ Bug Bounty & Security Testing |
| Bug Hunt Pro | bughuntpro.online | ๐ Online Security Tools |
| Song Store | songstore.net | ๐ต Music & Audio Platform |
| Bangladesh Times | bangladesh-times.com | ๐ฐ Bangladesh News & Updates |
๐ฑ Social & Professional
| ๐ฏ Platform | ๐ Link | ๐จ Badge |
|---|---|---|
| GitHub | github.com/AFTeam-Owner | |
| YouTube | youtube.com/@the_song_store | |
| Telegram | t.me/AF_Team_Owner | |
| farhanbd637@gmail.com | ||
| Website | infinityprompt.com |
๐จ Visual Identity
graph TD
A[๐ถ๏ธ ShadowSeal] --> B[๐ Encryption]
A --> C[๐ Cross-Platform]
A --> D[๐ฑ Android Support]
B --> E[๐ป Linux]
B --> F[๐ช Windows]
B --> G[๐ macOS]
C --> H[๐ฑ Termux]
C --> I[๐ค Pydroid]
D --> J[๐ง ARM Optimization]
D --> K[๐ก๏ธ Android Security]
๐ญ Alternate Titles
- ๐น Silent Strategist
- ๐น Bangladeshi Encryption Architect
- ๐น Underground Framework Coder
- ๐น AI-Fighter. Logic-Driven. Emotion-Coded.
๐ก๏ธ Security Design
- ๐ No marshal. No base64. No eval.
- ๐งฎ Pure math + character randomization + trig functions
- ๐ฅ No decryptor โ by design
- ๐ง Impossible to reverse, even theoretically
ShadowSeal isn't obfuscation โ it's mathematical exile.
๐ License
MIT โ Free to use.
But once encrypted, it's yours and only yours โ
No backup. No undo. No surrender.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file shadowseal-2.0.0.tar.gz.
File metadata
- Download URL: shadowseal-2.0.0.tar.gz
- Upload date:
- Size: 119.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a60d9559183ce26130132e0d223d73a4001b120aa7435dddc0c1f019dac597eb
|
|
| MD5 |
c6f7a0f5b8254b47bd663d5844902587
|
|
| BLAKE2b-256 |
04dd9f466546a19f637b2a7e69c45773ae3b81676ff5326a15cdb80a622168aa
|