You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

shadowseal

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

shadowseal

Secure Python encryption and execution framework with cross-platform support

1.0.5
pipPyPI
Maintainers
1

🕶️ 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

FeatureStatus
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

PlatformStatusNotes
Linux✅ Full SupportAll distributions (Ubuntu, Debian, Arch, etc.)
Android✅ Full SupportTermux, Pydroid, QPython
Windows✅ Full SupportWindows 7+ (x86/x64)
macOS✅ Full SupportIntel & Apple Silicon
iOS✅ Limited SupportPythonista, Pyto
Raspberry Pi✅ Full SupportARM 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

PlatformEncryption SpeedMemory UsageNotes
Linux (Cython)100%100%Baseline
Android (Pure)85%110%Optimized for ARM
Windows95%105%Good performance
macOS98%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



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

AreaTools / Skills
🧠 AI + LogicLLM API Systems, File-Based AI, OpenAI Proxy
🔐 SecurityPython Encryption, Telegram Bot Firewalls, Key-based APIs
📦 File ArchitecturePure file systems, no-SQL data management
💬 ChatbotsConversational AI with human-like depth
🎯 AutomationCode runners, attackers, mass-senders, search engines
🎨 Creative DevMarkdown/GitHub identity, Deface UIs, Terminal vibes
💻 PlatformsAndroid (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
AFTeamafteam.info🛡️ Security & Encryption Hub
Kotha Kabbokothakabbo.com📚 Bangladeshi Stories & Culture
Kotha Kabbokothakabbo.online🌐 Global Storytelling Platform
With Bornalywithbornaly.me👤 Personal Portfolio & Projects
With Bornalywithbornaly.online🎨 Creative Works Showcase
Bug Hunt Probughuntpro.com🐛 Bug Bounty & Security Testing
Bug Hunt Probughuntpro.online🔍 Online Security Tools
Song Storesongstore.net🎵 Music & Audio Platform
Bangladesh Timesbangladesh-times.com📰 Bangladesh News & Updates

📱 Social & Professional

🎨 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

Keywords

encryption

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts