Professional AI-Powered Penetration Testing Framework
Autonomous security assessment powered by state-of-the-art language models
Features โข Quick Start โข Architecture โข Pipelines โข Security โข Docs
๐ฅ Overview
Zen-AI-Pentest is an autonomous, AI-driven penetration testing framework that combines cutting-edge large language models with 72+ professional security tools. Built for security professionals, bug bounty hunters, and enterprise red teams.
%%{init: {'theme': 'base', 'themeVariables': { 'background': '#0d1117', 'primaryColor': '#58a6ff', 'secondaryColor': '#161b22', 'tertiaryColor': '#0d1117', 'primaryBorderColor': '#58a6ff', 'secondaryBorderColor': '#30363d', 'tertiaryBorderColor': '#30363d', 'lineColor': '#58a6ff', 'fontSize': '14px', 'fontFamily': '-apple-system,BlinkMacSystemFont,Segoe UI,Noto Sans,Helvetica,Arial,sans-serif', 'textColor': '#ffffff', 'primaryTextColor': '#ffffff', 'secondaryTextColor': '#ffffff', 'tertiaryTextColor': '#ffffff', 'mainBkg': '#0d1117', 'nodeBorder': '#58a6ff', 'clusterBorder': '#30363d', 'clusterBkg': '#161b22', 'titleColor': '#ffffff' }}}%%
graph TB
subgraph "๐ Client Interface"
WebUI["React Dashboard<br/>Cloudflare Pages"]
CLI["Python CLI"]
API["REST API + WebSocket"]
end
subgraph "โก API Gateway"
FastAPI["FastAPI Server"]
Auth["JWT / RBAC Auth"]
WsMgr["WebSocket Manager"]
end
subgraph "๐ง AI Orchestrator"
AgentMgr["Agent Manager"]
Guardrails["๐ก๏ธ Guardrails<br/>IP/Domain Filter"]
TaskQ["๐ Task Queue"]
Risk["โ ๏ธ Risk Levels 0-3"]
State["๐ State Machine<br/>ReAct Pattern"]
end
subgraph "๐ค Agent Pool"
A1["Agent #1<br/>Recon"]
A2["Agent #2<br/>Exploit"]
A3["Agent #3<br/>Report"]
AN["Agent #N<br/>Custom"]
end
subgraph "๐ง Security Toolkit"
Nmap["nmap ยท masscan"]
Web["nuclei ยท sqlmap ยท zap ยท ffuf"]
Exploit["Metasploit ยท SearchSploit"]
Recon["amass ยท subfinder ยท httpx"]
AD["BloodHound ยท NetExec"]
OSINT["sherlock ยท theHarvester"]
end
subgraph "๐ Analysis & Reporting"
Evidence["๐ Evidence Collection<br/>Cryptographic Signatures"]
Attack["๐บ๏ธ Attack Path Analysis<br/>Cytoscape.js Graphs"]
Report["๐ Report Generator<br/>PDF ยท HTML ยท DOCX ยท JSON"]
Compliance["๐ Compliance Mapping<br/>ISO 27001 ยท PCI DSS ยท NIST"]
RiskScoring["๐ฏ Risk Scoring<br/>CVSS ยท EPSS ยท Bayesian Filter"]
end
subgraph "๐พ Data Layer"
PG[("๐ PostgreSQL<br/>Persistent State")]
Redis[("โก Redis<br/>Cache & Queue")]
FS[("๐ File Storage<br/>Reports & Evidence")]
end
WebUI --> FastAPI
CLI --> FastAPI
API --> FastAPI
FastAPI --> Auth
Auth --> AgentMgr
AgentMgr --> Guardrails
Guardrails --> TaskQ
TaskQ --> Risk
Risk --> State
State --> A1 & A2 & A3 & AN
A1 --> Nmap & Recon
A2 --> Web & Exploit
A3 --> AD & OSINT
AN --> Nmap & Web
Nmap --> Evidence
Web --> Attack
Exploit --> Evidence
Attack --> Report
State --> Report
Report --> Compliance
Report --> RiskScoring
Evidence --> PG
Attack --> PG
Compliance --> PG
RiskScoring --> Redis
Report --> FS
โจ Features
๐ค Autonomous AI
|
๐ฏ Risk Engine
|
๐ Exploit Validation
|
๐ง AI Persona System
|
๐บ๏ธ Attack Path Analysis
|
๐ Benchmarking
|
๐ง 72+ Integrated Security Tools
| Category | Tools |
|---|---|
| Network Scanning | nmap ยท masscan ยท scapy ยท tshark ยท tcpdump ยท netdiscover ยท arp-scan |
| Web Security | BurpSuite ยท SQLMap ยท Gobuster ยท OWASP ZAP ยท FFuF ยท Nikto ยท WAFW00F ยท WhatWeb ยท Nuclei |
| Exploitation | Metasploit Framework ยท SearchSploit |
| Brute Force | Hydra ยท Hashcat ยท John ยท Ncrack |
| Reconnaissance | Amass ยท Nuclei ยท TheHarvester ยท Subfinder ยท HTTPX ยท Sherlock ยท Scout |
| Active Directory | BloodHound ยท NetExec ยท Responder ยท ldapsearch ยท enum4linux |
| OSINT | Sherlock ยท Ignorant ยท TheHarvester ยท Scout |
| Code Analysis | Semgrep ยท TruffleHog ยท Gitleaks ยท Bandit |
| Container | Trivy ยท Docker ยท Kubectl |
| Wireless | Aircrack-ng ยท airmon-ng ยท airodump-ng ยท aireplay-ng |
| System | Netcat ยท Socat ยท OpenSSL ยท Proxychains ยท Tor |
๐ Quick Start
๐ณ Docker (Recommended)
|
๐ฆ Local Install
|
||||||||
๐งช AI Personas
|
๐ฅ๏ธ VM Setup
|
๐ป Usage
Python API
from agents.react_agent import ReActAgent, ReActAgentConfig
config = ReActAgentConfig(max_iterations=10, use_vm=True)
agent = ReActAgent(config)
result = agent.run(target="example.com",
objective="Comprehensive security assessment")
print(agent.generate_report(result))
REST API
# Auth
curl -X POST http://localhost:8000/auth/login \
-H "Content-Type: application/json" \
-d '{"username":"admin","password":"admin"}'
# Create scan
curl -X POST http://localhost:8000/scans \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{"name":"Network Scan","target":"192.168.1.0/24","scan_type":"network"}'
# Execute tool
curl -X POST http://localhost:8000/tools/execute \
-H "Authorization: Bearer $TOKEN" \
-d '{"tool_name":"nmap_scan","target":"scanme.nmap.org","parameters":{"ports":"22,80,443"}}'
# Generate report
curl -X POST http://localhost:8000/reports \
-H "Authorization: Bearer $TOKEN" \
-d '{"scan_id":1,"format":"pdf","template":"default"}'
WebSocket (Real-Time)
const ws = new WebSocket("ws://localhost:8000/ws/scans/1");
ws.onmessage = (event) => {
const data = JSON.parse(event.data);
console.log("Scan update:", data);
};
๐๏ธ Architecture
System Architecture
%%{init: {'theme': 'base', 'themeVariables': { 'background': '#0d1117', 'primaryColor': '#58a6ff', 'secondaryColor': '#161b22', 'tertiaryColor': '#0d1117', 'primaryBorderColor': '#58a6ff', 'secondaryBorderColor': '#30363d', 'tertiaryBorderColor': '#30363d', 'lineColor': '#58a6ff', 'fontSize': '14px', 'fontFamily': '-apple-system,BlinkMacSystemFont,Segoe UI,Noto Sans,Helvetica,Arial,sans-serif', 'textColor': '#ffffff', 'primaryTextColor': '#ffffff', 'secondaryTextColor': '#ffffff', 'tertiaryTextColor': '#ffffff', 'mainBkg': '#0d1117', 'nodeBorder': '#58a6ff', 'clusterBorder': '#30363d', 'clusterBkg': '#161b22', 'titleColor': '#ffffff' }}}%%
graph LR
subgraph "Client"
WEB["๐ Web UI<br/>React ยท Cloudflare"]
CLI["๐ป CLI ยท Python"]
API_CLIENT["๐ REST Client"]
end
subgraph "API Gateway"
FASTAPI["FastAPI + WebSocket"]
AUTH["๐ JWT/RBAC"]
WS["๐ก WebSocket"]
end
subgraph "Orchestrator"
G["๐ก๏ธ Guardrails"]
TQ["๐ Task Queue"]
RL["โ ๏ธ Risk 0-3"]
SM["๐ State Machine"]
end
subgraph "Agents"
A1["๐ค Agent Pool<br/>Docker Sandbox"]
end
subgraph "Tools"
TOOLS["๐ง 72+ Tools<br/>nmap ยท nuclei ยท sqlmap<br/>metasploit ยท burp ยท hydra"]
end
subgraph "Analysis"
EV["๐ Evidence"]
AP["๐บ๏ธ Attack Path"]
CC["๐ Chain of Custody"]
COMP["๐ Compliance"]
REP["๐ Reports"]
RS["๐ฏ Risk Scoring"]
end
subgraph "Data"
PG[("๐ PostgreSQL")]
RD[("โก Redis")]
FS[("๐ File Store")]
end
WEB --> FASTAPI
CLI --> FASTAPI
API_CLIENT --> FASTAPI
FASTAPI --> AUTH
AUTH --> WS
WS --> G
G --> TQ --> RL --> SM
SM --> A1
A1 --> TOOLS
TOOLS --> EV & AP
SM --> REP
EV --> CC
AP --> COMP
CC --> RS
EV --> PG
AP --> PG
COMP --> PG
RS --> RD
REP --> FS
๐ CI/CD Pipelines
All pipeline diagrams use Mermaid โ rendered automatically by GitHub.
1. ๐งช Tests Pipeline
%%{init: {'theme': 'base', 'themeVariables': { 'background': '#0d1117', 'primaryColor': '#3fb950', 'secondaryColor': '#161b22', 'tertiaryColor': '#0d1117', 'primaryBorderColor': '#3fb950', 'secondaryBorderColor': '#30363d', 'tertiaryBorderColor': '#30363d', 'lineColor': '#3fb950', 'fontSize': '14px', 'fontFamily': '-apple-system,BlinkMacSystemFont,Segoe UI,Noto Sans,Helvetica,Arial,sans-serif', 'textColor': '#ffffff', 'primaryTextColor': '#ffffff', 'secondaryTextColor': '#ffffff', 'tertiaryTextColor': '#ffffff', 'mainBkg': '#0d1117', 'nodeBorder': '#3fb950', 'clusterBorder': '#30363d', 'clusterBkg': '#161b22', 'titleColor': '#ffffff' }}}%%
graph LR
TRIG1["push main/develop"] --> TEST
TRIG2["pull_request main/develop"] --> TEST
TRIG3["workflow_dispatch"] --> TEST
TEST["๐งช test (matrix 3.11, 3.12)<br/>pytest ยท 43k+ tests"] --> RESULT["โ
Test Summary"]
style TEST fill:#3fb950,stroke:#1a7f37,color:#fffffffff
2. ๐ Codecov Coverage Pipeline
%%{init: {'theme': 'base', 'themeVariables': { 'background': '#0d1117', 'primaryColor': '#3fb950', 'secondaryColor': '#161b22', 'tertiaryColor': '#0d1117', 'primaryBorderColor': '#3fb950', 'secondaryBorderColor': '#30363d', 'tertiaryBorderColor': '#30363d', 'lineColor': '#3fb950', 'fontSize': '14px', 'fontFamily': '-apple-system,BlinkMacSystemFont,Segoe UI,Noto Sans,Helvetica,Arial,sans-serif', 'textColor': '#ffffff', 'primaryTextColor': '#ffffff', 'secondaryTextColor': '#ffffff', 'tertiaryTextColor': '#ffffff', 'mainBkg': '#0d1117', 'nodeBorder': '#3fb950', 'clusterBorder': '#30363d', 'clusterBkg': '#161b22', 'titleColor': '#ffffff' }}}%%
graph LR
TRIG1["pull_request"] --> COV
TRIG2["workflow_dispatch"] --> COV
COV["๐ coverage<br/>pytest --cov=core,agents,api,tools<br/>autonomous,risk_engine,modules,web_ui"] --> UPLOAD["๐ค Upload to Codecov"]
COV --> ARTIFACT["๐ฆ Upload artifact"]
COV --> PR["๐ฌ Comment PR"]
style COV fill:#3fb950,stroke:#1a7f37,color:#fffffffff
3. ๐ Security Scan Pipeline
%%{init: {'theme': 'base', 'themeVariables': { 'background': '#0d1117', 'primaryColor': '#f85149', 'secondaryColor': '#161b22', 'tertiaryColor': '#0d1117', 'primaryBorderColor': '#f85149', 'secondaryBorderColor': '#30363d', 'tertiaryBorderColor': '#30363d', 'lineColor': '#f85149', 'fontSize': '14px', 'fontFamily': '-apple-system,BlinkMacSystemFont,Segoe UI,Noto Sans,Helvetica,Arial,sans-serif', 'textColor': '#ffffff', 'primaryTextColor': '#ffffff', 'secondaryTextColor': '#ffffff', 'tertiaryTextColor': '#ffffff', 'mainBkg': '#0d1117', 'nodeBorder': '#f85149', 'clusterBorder': '#30363d', 'clusterBkg': '#161b22', 'titleColor': '#ffffff' }}}%%
graph TB
TRIG1["pull_request main/develop"] --> SEC
TRIG2["schedule daily 6am"] --> SEC
TRIG3["workflow_dispatch"] --> SEC
subgraph SEC["๐ Security Scan"]
DEP["๐ฆ Dependency Scan<br/>Safety ยท pip-audit"]
SECRET["๐ Secret Detection<br/>TruffleHog ยท GitLeaks ยท GitGuardian"]
SAST["๐ SAST Analysis<br/>Bandit ยท Semgrep"]
IAC["๐๏ธ IaC Scan<br/>Checkov ยท Trivy Config"]
SCORE["๐ OSSF Scorecard"]
end
DEP --> SUMMARY["๐ Security Summary"]
SECRET --> SUMMARY
SAST --> SUMMARY
IAC --> SUMMARY
SCORE --> SUMMARY
SAST --> SARIF1["๐ Upload Semgrep SARIF"]
IAC --> SARIF2["๐ Upload Checkov SARIF"]
IAC --> SARIF3["๐ Upload Trivy SARIF"]
SCORE --> SARIF4["๐ Upload Scorecard SARIF"]
DEP --> ART1["๐ฆ Upload Reports"]
4. โ CodeQL Analysis
%%{init: {'theme': 'base', 'themeVariables': { 'background': '#0d1117', 'primaryColor': '#58a6ff', 'secondaryColor': '#161b22', 'tertiaryColor': '#0d1117', 'primaryBorderColor': '#58a6ff', 'secondaryBorderColor': '#30363d', 'tertiaryBorderColor': '#30363d', 'lineColor': '#58a6ff', 'fontSize': '14px', 'fontFamily': '-apple-system,BlinkMacSystemFont,Segoe UI,Noto Sans,Helvetica,Arial,sans-serif', 'textColor': '#ffffff', 'primaryTextColor': '#ffffff', 'secondaryTextColor': '#ffffff', 'tertiaryTextColor': '#ffffff', 'mainBkg': '#0d1117', 'nodeBorder': '#58a6ff', 'clusterBorder': '#30363d', 'clusterBkg': '#161b22', 'titleColor': '#ffffff' }}}%%
graph LR
TRIG["schedule weekly Sunday"] --> CQL
subgraph CQL["CodeQL Advanced"]
CHECKOUT["๐ฅ Checkout"]
INIT["โ๏ธ Initialize CodeQL<br/>security-extended + security-and-quality"]
BUILD["๐จ Autobuild"]
ANALYZE["๐ฌ Perform Analysis"]
end
CQL --> RES["โ
SARIF Results"]
5. ๐ Deploy Pipeline
%%{init: {'theme': 'base', 'themeVariables': { 'background': '#0d1117', 'primaryColor': '#d29922', 'secondaryColor': '#161b22', 'tertiaryColor': '#0d1117', 'primaryBorderColor': '#d29922', 'secondaryBorderColor': '#30363d', 'tertiaryBorderColor': '#30363d', 'lineColor': '#d29922', 'fontSize': '14px', 'fontFamily': '-apple-system,BlinkMacSystemFont,Segoe UI,Noto Sans,Helvetica,Arial,sans-serif', 'textColor': '#ffffff', 'primaryTextColor': '#ffffff', 'secondaryTextColor': '#ffffff', 'tertiaryTextColor': '#ffffff', 'mainBkg': '#0d1117', 'nodeBorder': '#d29922', 'clusterBorder': '#30363d', 'clusterBkg': '#161b22', 'titleColor': '#ffffff' }}}%%
graph TB
TRIG1["release published"] --> DEPLOY
TRIG2["workflow_dispatch staging/prod"] --> DEPLOY
subgraph DEPLOY["Deploy Pipeline"]
CHECK["โ
pre-deploy-check<br/>pytest + bandit"]
STAGE["๐งช deploy-staging<br/>staging.pentest.example.com"]
PROD["๐ deploy-production<br/>pentest.example.com"]
end
CHECK --> STAGE
STAGE --> PROD
PROD --> SLACK["๐ฌ Notify Slack"]
CHECK --> SUM["๐ deploy-summary"]
STAGE --> SUM
PROD --> SUM
6. ๐ฆ Release Pipeline
%%{init: {'theme': 'base', 'themeVariables': { 'background': '#0d1117', 'primaryColor': '#bc8cff', 'secondaryColor': '#161b22', 'tertiaryColor': '#0d1117', 'primaryBorderColor': '#bc8cff', 'secondaryBorderColor': '#30363d', 'tertiaryBorderColor': '#30363d', 'lineColor': '#bc8cff', 'fontSize': '14px', 'fontFamily': '-apple-system,BlinkMacSystemFont,Segoe UI,Noto Sans,Helvetica,Arial,sans-serif', 'textColor': '#ffffff', 'primaryTextColor': '#ffffff', 'secondaryTextColor': '#ffffff', 'tertiaryTextColor': '#ffffff', 'mainBkg': '#0d1117', 'nodeBorder': '#bc8cff', 'clusterBorder': '#30363d', 'clusterBkg': '#161b22', 'titleColor': '#ffffff' }}}%%
graph TB
TRIG["workflow_dispatch<br/>version + prerelease"] --> PRE
PRE["๐ pre-release-checks<br/>version ยท changelog"] --> BUILD
PRE --> CHLOG["๐ changelog"]
PRE --> REL["๐ท๏ธ github-release"]
BUILD["๐ฆ build<br/>python -m build ยท twine"] --> REL
REL --> PYPI["โฌ๏ธ pypi-publish<br/>twine upload"]
REL --> DOCKER["๐ณ docker build & push<br/>ghcr.io ยท amd64 + arm64"]
REL --> DOCS["๐ docs<br/>mkdocs ยท mkdocs-material"]
PYPI --> POST["๐ฌ post-release<br/>discussion ยท milestone"]
DOCKER --> NOTIFY["๐ notify<br/>Slack + Discord"]
DOCKER --> SUMMARY["๐ release-summary"]
PYPI --> NOTIFY
PYPI --> SUMMARY
7. โ๏ธ CI Pipeline (Legacy)
%%{init: {'theme': 'base', 'themeVariables': { 'background': '#0d1117', 'primaryColor': '#8b949e', 'secondaryColor': '#161b22', 'tertiaryColor': '#0d1117', 'primaryBorderColor': '#8b949e', 'secondaryBorderColor': '#30363d', 'tertiaryBorderColor': '#30363d', 'lineColor': '#8b949e', 'fontSize': '14px', 'fontFamily': '-apple-system,BlinkMacSystemFont,Segoe UI,Noto Sans,Helvetica,Arial,sans-serif', 'textColor': '#ffffff', 'primaryTextColor': '#ffffff', 'secondaryTextColor': '#ffffff', 'tertiaryTextColor': '#ffffff', 'mainBkg': '#0d1117', 'nodeBorder': '#8b949e', 'clusterBorder': '#30363d', 'clusterBkg': '#161b22', 'titleColor': '#ffffff' }}}%%
graph TB
TRIG["workflow_dispatch"] --> CI
subgraph CI["CI Pipeline (Legacy)"]
T["๐งช test<br/>matrix 3.10 ยท 3.11 ยท 3.12"]
L["โจ lint<br/>black ยท isort ยท flake8 ยท ruff"]
S["๐ security-scan<br/>bandit ยท safety"]
end
T --> CG["๐ coverage-gate<br/>check >= 80%"]
T --> SUM["๐ ci-summary"]
L --> SUM
S --> SUM
CG --> SUM
๐งช Test Suite
| Metric | Value | Status |
|---|---|---|
| Test Files | 1,145+ | โ |
| Total Tests | 43,000+ | โ Verified |
| Coverage | ~10% | โ ๏ธ Improving |
| Target | 80%+ | ๐ฏ Goal |
# All tests
pytest tests/ -v
# With coverage
pytest tests/ --cov=. --cov-report=html --cov-report=term
# Unit tests
pytest tests/unit/ -v
# Integration
pytest tests/integration/ -v
# Security
pytest tests/security/ -v
# Exclude slow
pytest tests/ -m "not slow" -v
๐ก๏ธ Security
Built-in Protections
- โ Private IP Blocking: Prevents scanning 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16
- โ Loopback Protection: Blocks 127.x.x.x and ::1
- โ Local Domain Filter: Prevents .local, .internal, localhost
- โ Risk Level Control: Restricts tools by safety level (0-3)
- โ Rate Limiting: Prevents abuse
Risk Levels
| Level | Description | Tools |
|---|---|---|
| SAFE (0) | Recon only | whois, dns, subdomain |
| NORMAL (1) | Standard scanning | + nmap, nuclei |
| ELEVATED (2) | Light exploitation | + sqlmap, exploit |
| AGGRESSIVE (3) | Full exploitation | + pivot, lateral |
๐ง Configuration
Option 1: Obsidian Vault (Recommended)
bash mcp/obsidian/setup.sh
code ~/Documents/Obsidian\ Vault/Secrets/secrets.yaml
Option 2: Environment Variables
cp .env.example .env
nano .env
source .env
๐ Project Structure
zen-ai-pentest/
โโโ api/ # FastAPI Backend
โ โโโ main.py # API server ยท routes ยท middleware
โ โโโ auth.py # JWT authentication ยท RBAC
โ โโโ websocket.py # Real-time scan updates
โโโ agents/ # AI Agent Implementations
โ โโโ react_agent.py # Core ReAct pattern agent
โ โโโ react_agent_vm.py # VM-backed agent
โ โโโ personas/ # 11 specialized AI personas
โโโ core/ # Framework Core
โ โโโ orchestrator.py # Workflow orchestration
โ โโโ models.py # Data models
โ โโโ cache.py # Multi-tier caching
โโโ tools/ # 72+ Security Tools
โ โโโ nmap/ # Network scanning
โ โโโ nuclei/ # Vulnerability detection
โ โโโ sqlmap/ # SQL injection
โ โโโ metasploit/ # Exploitation framework
โ โโโ ... # 68+ more integrations
โโโ risk_engine/ # Risk Analysis
โ โโโ cvss.py # CVSS scoring
โ โโโ epss.py # EPSS probability
โ โโโ false_positive_engine.py # Bayesian filtering
โโโ modules/ # High-Level Modules
โ โโโ scanner/ # Automated scanning
โ โโโ exploit_modules/ # Exploit validation
โโโ web_ui/ # Frontend
โ โโโ frontend/ # React ยท Vite ยท TypeScript
โ โโโ dashboard/ # Analytics dashboard
โโโ database/ # PostgreSQL Models
โโโ reports/ # PDF ยท HTML ยท DOCX Generator
โโโ docker/ # Docker Compose ยท Dockerfiles
โโโ tests/ # 43,000+ Tests
โ โโโ unit/ # Component tests
โ โโโ integration/ # E2E workflows
โ โโโ security/ # SAST/DAST validation
โโโ docs/ # Documentation
๐ Documentation
| Document | Description |
|---|---|
| Architecture | Complete system design |
| API Reference | REST + WebSocket endpoints |
| Installation | Docker ยท Local ยท Production |
| Docker Guide | Deployment & configuration |
| Security Audit | Security assessment |
| Agent Guide | AI development partner guide |
| Benchmarks | Performance results |
| Roadmap 2026 | Future plans |
๐ Community
| Platform | Link |
|---|---|
| ๐ฎ Discord | discord.gg/zJZUJwK9AC |
| ๐ GitHub | github.com/SHAdd0WTAka/Zen-Ai-Pentest |
| ๐ Website | zen-ai-pentest.pages.dev |
| ๐ Dashboard | live dashboard |
๐ฑ Scan QR codes for instant mobile access
๐ค Contributing
- Fork the repository
- Create feature branch (
git checkout -b feature/amazing-feature) - Commit changes (
git commit -m 'Add amazing feature') - Push to branch (
git push origin feature/amazing-feature) - Open a Pull Request
See CONTRIBUTING.md and CODE_OF_CONDUCT.md.
๐ฅ Authors
@SHAdd0WTAka Founder ยท Lead Developer |
Kimi AI AI Development Partner |
๐ License
MIT License โ see LICENSE.
โ ๏ธ IMPORTANT: For authorized security testing only. Always obtain proper permission before testing any system you do not own.