Metadata-Version: 2.4
Name: shadowseal
Version: 1.0.4
Summary: Secure Python encryption and execution framework with cross-platform support
Home-page: https://github.com/AFTeam-Owner/shadowseal
Author: Monarch of Shadows
Author-email: Monarch of Shadows <farhanbd637@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/AFTeam-Owner/shadowseal
Project-URL: Repository, https://github.com/AFTeam-Owner/shadowseal
Project-URL: Issues, https://github.com/AFTeam-Owner/shadowseal/issues
Keywords: encryption,obfuscation,security,python,anti-debugging,android,termux
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS
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: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: System :: Systems Administration
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: cython>=3.0
Requires-Dist: cryptography>=41.0.0
Requires-Dist: psutil>=5.8.0
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov>=2.0; extra == "dev"
Requires-Dist: black>=21.0; extra == "dev"
Requires-Dist: flake8>=3.8; extra == "dev"
Requires-Dist: mypy>=0.800; extra == "dev"
Provides-Extra: android
Requires-Dist: psutil>=5.8.0; extra == "android"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# 🕶️ SHADOWSEAL - Encrypt. Execute. Never Expose.

<div align="center">
  
  <img src="https://readme-typing-svg.herokuapp.com/?font=Fira+Code&size=28&pause=1000&color=FF44CC&center=true&vCenter=true&width=600&lines=🕶️+SHADOWSEAL;Encrypt.+Execute.+Never+Expose.;AI+proof+.+Human+proof+.+Undecodable.;Cross-Platform+Android+Linux+Windows+macOS" alt="Typing SVG" />
  
  <br><br>
  
  <img src="https://img.shields.io/badge/Decryption-NOT%20POSSIBLE-critical?style=for-the-badge&logo=protonmail&logoColor=white&color=red"/>
  <img src="https://img.shields.io/badge/AI%20Proof-✅-green?style=for-the-badge&logo=python&logoColor=white"/>
  <img src="https://img.shields.io/badge/Platform-All%20OS-blue?style=for-the-badge&logo=linux"/>
  <img src="https://badgen.net/badge/Encrypted%20Lines/∞/purple?icon=code"/>
  <img src="https://img.shields.io/github/stars/AFTeam-Owner/shadowseal?style=social"/>
  <img src="https://visitor-badge.laobi.icu/badge?page_id=AFTeam-Owner.shadowseal"/>
  
  <br>
  
  <img src="https://img.shields.io/badge/Android-Termux-green?style=flat-square&logo=android&logoColor=white"/>
  <img src="https://img.shields.io/badge/Linux-Ubuntu-orange?style=flat-square&logo=linux&logoColor=white"/>
  <img src="https://img.shields.io/badge/Windows-10+-blue?style=flat-square&logo=windows&logoColor=white"/>
  <img src="https://img.shields.io/badge/macOS-Silicon-purple?style=flat-square&logo=apple&logoColor=white"/>
  
</div>

---

💣 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

```mermaid
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

```mermaid
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

```bash
pip install shadowseal
```

or from source:

```bash
git clone https://github.com/AFTeam-Owner/shadowseal.git
cd shadowseal
pip install .
```

---

🔐 Encrypt Your File

```bash
shadowseal encrypt script.py -o output.shc
shadowseal run output.shc
```

➡️ Still runs.  
🚫 Cannot be reversed.  
✅ Remains yours.

---

💻 Terminal Simulation

```bash
> 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

<div align="center">
  <img src="https://media.giphy.com/media/qgQUggAC3Pfv687qPC/giphy.gif" width="480"/>
</div>

---

## 🌍 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
```bash
pip install shadowseal
```

#### Windows
```powershell
pip install shadowseal
```

#### Android (Termux)
```bash
pkg update && pkg upgrade
pkg install python rust
pip install shadowseal
```

#### Android (Pydroid)
```bash
pip install shadowseal
```

---

## 🚀 Quick Start Guide

### Basic Usage
```bash
# 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
```bash
# 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
```bash
git clone https://github.com/AFTeam-Owner/shadowseal.git
cd shadowseal
pip install -e .
```

### Cross-Platform Build
```bash
# 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
```bash
# 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
```bash
python test_cross_platform.py
```

### Manual Testing
```bash
# 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.4 - 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

---

<div align="center">
  
  <br><br>
  
  <img src="https://readme-typing-svg.herokuapp.com/?font=Fira+Code&size=16&pause=1000&color=FA00FF&center=true&vCenter=true&width=1000&lines=I+didn't+lose+her+—+I+never+truly+had+her,+yet+still,+I+never+wanted+to+let+her+go.;The+world+never+heard+my+pain,+so+I+carved+it+into+code+—+line+by+line,+wound+by+wound.;So+I+turned+to+code+—+the+only+place+my+pain+could+exist+without+judgment." alt="Typing SVG" style="max-width: 100%; height: auto;" />
  
  <br><br>
  
  <img src="https://capsule-render.vercel.app/api?type=waving&color=gradient&height=100&section=footer&text=ShadowSeal%20v1.0.4%20-%20Cross-Platform%20Edition&fontSize=20&fontColor=ffffff" alt="Footer" />
  
</div>

---

<div align="center">
  
  <p align="center">
    <img src="https://readme-typing-svg.herokuapp.com/?font=Fira+Code&size=14&pause=1000&color=00FF99&center=true&vCenter=true&width=600&lines=Built+with+💔+by+Farhan+Jihady;Encrypted+with+🔥+by+the+Monarch+of+Shadows;Cross-platform+Android+Linux+Windows+macOS+Ready" alt="Footer Typing" />
  </p>
  
</div>

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

👤 Developer Identity — Farhan Jihady (AFTeam Owner)

<div align="center">
  <img src="https://readme-typing-svg.herokuapp.com/?font=Fira+Code&pause=1000&color=00FF99&center=true&vCenter=true&width=550&lines=Created+by+GAMING+WITH+FARHAN+JIHADY;Built+for+Bangladeshi+Hackers+and+Makers;Encrypting+Python+for+the+Underground+Elite;No+Backdoor+.+No+Escape+.+Only+Run" alt="Typing Identity" />
</div>

---

🧠 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
<div align="center">
  
| 🏢 **Primary Domains** | 🔗 **Links** | 🎯 **Purpose** |
|--------------------------|--------------|---------------|
| **AFTeam** | [afteam.info](https://afteam.info) | 🛡️ Security & Encryption Hub |
| **Kotha Kabbo** | [kothakabbo.com](https://kothakabbo.com) | 📚 Bangladeshi Stories & Culture |
| **Kotha Kabbo** | [kothakabbo.online](https://kothakabbo.online) | 🌐 Global Storytelling Platform |
| **With Bornaly** | [withbornaly.me](https://withbornaly.me) | 👤 Personal Portfolio & Projects |
| **With Bornaly** | [withbornaly.online](https://withbornaly.online) | 🎨 Creative Works Showcase |
| **Bug Hunt Pro** | [bughuntpro.com](https://bughuntpro.com) | 🐛 Bug Bounty & Security Testing |
| **Bug Hunt Pro** | [bughuntpro.online](https://bughuntpro.online) | 🔍 Online Security Tools |
| **Song Store** | [songstore.net](https://songstore.net) | 🎵 Music & Audio Platform |
| **Bangladesh Times** | [bangladesh-times.com](https://bangladesh-times.com) | 📰 Bangladesh News & Updates |

</div>

### 📱 Social & Professional
<div align="center">
  
| 🎯 **Platform** | 🔗 **Link** | 🎨 **Badge** |
|-----------------|-------------|--------------|
| **GitHub** | [github.com/AFTeam-Owner](https://github.com/AFTeam-Owner) | ![GitHub](https://img.shields.io/badge/GitHub-181717?style=for-the-badge&logo=github&logoColor=white) |
| **YouTube** | [youtube.com/@the_song_store](https://youtube.com/@the_song_store) | ![YouTube](https://img.shields.io/badge/YouTube-FF0000?style=for-the-badge&logo=youtube&logoColor=white) |
| **Telegram** | [t.me/AF_Team_Owner](https://t.me/AF_Team_Owner) | ![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white) |
| **Email** | farhanbd637@gmail.com | ![Email](https://img.shields.io/badge/Email-D14836?style=for-the-badge&logo=gmail&logoColor=white) |
| **Website** | [infinityprompt.com](https://infinityprompt.com) | ![Website](https://img.shields.io/badge/Website-4285F4?style=for-the-badge&logo=google-chrome&logoColor=white) |

</div>

### 🎨 Visual Identity
<div align="center">
  
```mermaid
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]
```

</div>

---

🎭 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.

---

<p align="center">
  <img 
    src="https://readme-typing-svg.herokuapp.com/?font=Fira+Code&size=18&pause=1000&color=FA00FF&center=true&vCenter=true&width=1000&lines=I+didn't+lose+her+—+I+never+truly+had+her,+yet+still,+I+never+wanted+to+let+her+go.;The+world+never+heard+my+pain,+so+I+carved+it+into+code+—+line+by+line,+wound+by+wound.;So+I+turned+to+code+—+the+only+place+my+pain+could+exist+without+judgment." 
    alt="Typing SVG"
    style="max-width: 100%; height: auto;" />
</p>

---

