Skip to main content

Secure Python encryption and execution framework with cross-platform support

Project description

๐Ÿ•ถ๏ธ SHADOWSEAL - Encrypt. Execute. Never Expose.

Typing SVG





๐Ÿ’ฃ 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 .py files 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


๐ŸŽฏ 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



Typing SVG



Footer

Footer Typing

Version: 1.0.5 - Cross-Platform Edition | Built for the Underground Elite

๐Ÿ‘ค Developer Identity โ€” Farhan Jihady (AFTeam Owner)

Typing Identity

๐Ÿง  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 GitHub
YouTube youtube.com/@the_song_store YouTube
Telegram t.me/AF_Team_Owner Telegram
Email farhanbd637@gmail.com Email
Website infinityprompt.com Website

๐ŸŽจ 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.


Typing SVG


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

shadowseal-2.0.0.tar.gz (119.3 kB view details)

Uploaded Source

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

Hashes for shadowseal-2.0.0.tar.gz
Algorithm Hash digest
SHA256 a60d9559183ce26130132e0d223d73a4001b120aa7435dddc0c1f019dac597eb
MD5 c6f7a0f5b8254b47bd663d5844902587
BLAKE2b-256 04dd9f466546a19f637b2a7e69c45773ae3b81676ff5326a15cdb80a622168aa

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page