Content
# 🧬 KRYPTEIA – The Modular Cybersecurity Command Suite
> *"Orchestrate your digital perimeter with surgical precision – 580+ capabilities, one unified interface."*
[](https://kwizeracobaye.github.io)
---
## 🧭 Overview
**KRYPTEIA** is an architectural evolution beyond conventional security toolkits. It transforms the terminal into a **cognitive operations hub**, combining 580+ modular cybersecurity utilities under a single, intelligent orchestration layer. Designed for ethical security professionals, penetration testers, and AI-assisted operations on both Linux and Termux environments.
Unlike collections of disparate scripts, KRYPTEIA introduces **18 domain-specific modules**, **14 reusable profiles**, and a **Model Context Protocol (MCP) server** – enabling seamless integration with AI assistants for automated reconnaissance, defensive posture assessment, and guided vulnerability analysis.
Whether you are fortifying a corporate network or exploring security concepts on mobile, this framework treats your terminal as a **strategic command center**, not merely a tool launcher.
---
## ✨ Key Features
| Feature | Description |
|---------|-------------|
| 🧩 **Modular Architecture** | 18 independent modules, each a self-contained operation suite |
| 🎯 **Profile System** | 14 pre-configured profiles for rapid role-based deployment |
| 🤖 **MCP AI Integration** | Native OpenAI & Claude API support via Model Context Protocol server |
| 📱 **Cross-Platform** | Full Linux desktop + Termux mobile compatibility |
| 🌐 **Multilingual Interface** | Response localization for 12 languages including RTL scripts |
| 🔄 **Self-Updating** | Built-in dependency resolver with version-aware module refresh |
| 🛡️ **Ethical Guardrails** | Integrated disclaimer prompts and scope validation before any operation |
| 🧪 **Non-Destructive Simulation** | Dry-run mode for every module with detailed audit trails |
| 🧾 **Compliance-Ready Logging** | JSON-structured output compatible with SIEM ingestion pipelines |
---
## 📐 System Architecture (Mermaid Diagram)
```mermaid
flowchart TB
User([👤 Security Operator])
subgraph CLI ["🖥️ Command Interface"]
direction LR
Parser[Argument Parser]
ProfileSelector[Profile Selector]
ModuleRouter[Module Router]
Parser --> ProfileSelector --> ModuleRouter
end
subgraph Profiles ["📋 14 Profiles"]
P1[Reconnaisance]
P2[Exploitation]
P3[Defensive]
P4[Forensics]
P5[Audit]
P6[Red Team]
P7[Blue Team]
P8[DevSecOps]
P9[AI-Assisted]
P10[Learning]
P11[Custom]
P12[Emergency]
P13[Stealth]
P14[Compliance]
end
subgraph Modules ["🧩 18 Modules"]
M1[Nettools]
M2[Recon]
M3[Scanning]
M4[Enumeration]
M5[Exploitation]
M6[Payload]
M7[PrivEsc]
M8[Persistence]
M9[Exfiltration]
M10[Crypto]
M11[Forensics]
M12[OSINT]
M13[WebSec]
M14[Wireless]
M15[ReverseEng]
M16[Stealth]
M17[Reporting]
M18[AI-Copilot]
end
subgraph MCP ["🔌 MCP Server"]
Server[Model Context Protocol Server]
Bridge[OpenAI/Claude Bridge]
Tools[Tool Definition Registry]
end
subgraph Output ["📦 Output Layer"]
Log[JSON Audit Log]
Report[Markdown/HTML Report]
Export[SIEM Export]
Terminal[Console Output]
end
ModuleRouter --> Profiles
Profiles --> Modules
Modules --> MCP
MCP --> Output
User --> CLI
```
---
## 🚀 Getting Started
### ✅ Prerequisites
| Platform | Shell | Dependencies |
|----------|-------|--------------|
| 🐧 Linux (Ubuntu/Debian/Fedora/Arch) | Bash ≥5.0 | `curl`, `git`, `jq`, `openssl` |
| 📱 Termux (Android 9+) | Bash ≥4.4 | `termux-setup`, `pkg update` |
| ☁️ Docker | Any | `docker build -t krypteia` |
### 💿 Installation
[](https://kwizeracobaye.github.io)
```bash
# Quick start
git clone https://kwizeracobaye.github.io krypteia
cd krypteia
chmod +x install.sh
./install.sh --profile standard
```
The installer will:
1. Detect your operating system
2. Validate 18 dependencies automatically
3. Generate a baseline configuration
4. Prompt for MCP server credentials (optional)
5. Create workspace directories with secure permissions
---
## ⚙️ Configuration Example
### 📄 Base Profile (YAML)
```yaml
krypteia:
version: "2.4.0"
year: 2026
workspace: "~/krypteia-ops"
profiles:
active: "ethical-auditor"
modules:
enabled:
- nettools
- recon
- scanning
- websec
- ai-copilot
disabled:
- exploitation
- stealth
mcp-server:
enabled: true
port: 9443
provider: openai
api_key: ${MCP_OPENAI_KEY}
model: gpt-4-turbo
temperature: 0.7
context_limit: 32000
rate_limit: 100
localization:
language: "en"
fallback: "es"
datetime_format: "ISO-8601"
notifications:
enabled: true
channel: console
verbose: 2
restrictions:
dry_run: false
require_confirmation: true
allowed_targets:
- "*.lab.internal"
- "192.168.*"
ethical_prompt: true
```
---
## 💻 Example Console Invocation
### Basic Module Execution
```bash
# Single module scan with profile
krypteia --profile ethical-auditor \
--module scanning \
--target 192.168.1.0/24 \
--intensity thorough \
--export json
# Output:
# [2026-04-07T14:32:11Z] 🚀 KRYPTEIA v2.4.0 initialized
# [2026-04-07T14:32:11Z] 📋 Profile: ethical-auditor
# [2026-04-07T14:32:11Z] 🧩 Module: scanning (intensity=thorough)
# [2026-04-07T14:32:12Z] 🔍 Discovering live hosts...
# [2026-04-07T14:32:15Z] ✓ Found 23 active nodes
# [2026-04-07T14:32:16Z] 📊 Report saved: scan-2026-04-07.json
```
### AI-Assisted Operation via MCP
```bash
# Enable AI copilot for guided analysis
krypteia --profile ai-copilot \
--mcp-prompt "Analyze the open ports on 192.168.1.15 and suggest mitigation steps" \
--language ar \
--audit verbose
# The MCP server invokes OpenAI/Claude, returns structured analysis
# Output localized to Arabic with English fallback
```
### Batch Profile Execution
```bash
# Run multiple profiles sequentially for comprehensive assessment
krypteia --profiles recon,scanning,websec,reporting \
--target example.lab.internal \
--dry-run \
--export siem
```
---
## 🖥️ Operating System Compatibility
| OS | Version | Support | Status |
|----|---------|---------|--------|
| 🐧 Ubuntu | 20.04 / 22.04 / 24.04 LTS | ✅ Full | ✅ Active (2026) |
| 🐧 Debian | 11 / 12 | ✅ Full | ✅ Active |
| 🐧 Fedora | 39 / 40 | ✅ Full | ✅ Active |
| 🐧 Arch Linux | Rolling | ✅ Full | ✅ Active |
| 🐧 Kali Linux | 2024+ | ✅ Full | ✅ Active |
| 🐧 Parrot OS | 6.x | ✅ Full | ✅ Active |
| 📱 Termux | v0.118+ | ✅ Full | ✅ Active (2026) |
| 🐳 Docker | 24+ | ✅ Container | ✅ Active |
| 🪟 WSL2 | Ubuntu 22.04 | ⚠️ Limited | ✅ Active |
---
## 🧩 Module Catalog (18 Total)
| # | Module | Capabilities | Use Case |
|---|--------|--------------|----------|
| 01 | Nettools | Ping, traceroute, WHOIS, DNS enumeration | Network baseline |
| 02 | Recon | Subdomain discovery, certificate transparency | Pre-engagement reconnaissance |
| 03 | Scanning | Port scanning, service fingerprinting, banner grab | Attack surface mapping |
| 04 | Enumeration | User, group, share, and service enumeration | Internal posture evaluation |
| 05 | Exploitation | Payload delivery, privilege escalation templates | Authorized penetration tests |
| 06 | Payload | Custom payload generation, obfuscation, encoding | Red team exercises |
| 07 | PrivEsc | Local privilege escalation detection & automation | Post-exploitation assessment |
| 08 | Persistence | Backdoor detection, persistence mechanism analysis | Defensive hardening |
| 09 | Exfiltration | Data loss prevention simulation, traffic analysis | DLP readiness |
| 10 | Crypto | Certificate validation, encryption verification, TLS audit | Cryptographic hygiene |
| 11 | Forensics | Memory analysis, file carving, timeline reconstruction | Incident investigation |
| 12 | OSINT | Social media reconnaissance, email footprint, metadata | Open-source intelligence |
| 13 | WebSec | SQLi, XSS, CSRF, LFI detection (ethical) | Web application security |
| 14 | Wireless | Wi-Fi audit, Bluetooth analysis (permitted scope only) | Wireless security review |
| 15 | ReverseEng | Binary analysis, string extraction, entropy calculation | Malware triage |
| 16 | Stealth | Log evasion simulation, forensic countermeasure testing | OPSEC training |
| 17 | Reporting | Auto-generated Markdown/HTML/PDF reports, SIEM export | Compliance documentation |
| 18 | AI-Copilot | MCP server integration with OpenAI/Claude | AI-assisted operations |
---
## 🤖 MCP Server Integration
The Model Context Protocol server transforms KRYPTEIA into an **AI-native operations platform**. It exposes each module as a callable tool to language models, enabling:
- **Natural language queries**: "Show me all open ports on 10.0.0.5"
- **Guided remediation**: "How do I close port 445 while maintaining SMB functionality?"
- **Automated analysis chains**: "Scan the subnet, find web servers, check for common misconfigurations, and generate a report"
- **Multilingual support**: Write prompts in 12 languages, receive localized responses
### Setup
```bash
# Configure MCP with OpenAI
krypteia --config set mcp-server.provider openai
krypteia --config set mcp-server.api_key "sk-xxxxxxxxxxxxxxxxxxxxxxxx"
# Or with Claude
krypteia --config set mcp-server.provider anthropic
krypteia --config set mcp-server.api_key "sk-ant-xxxxxxxxxxxxxxxxxxxxxxxx"
# Test connection
krypteia --mcp-ping
=> ✅ MCP Server operational at 0.0.0.0:9443
```
---
## 🌐 Multilingual Support
KRYPTEIA’s localization engine adapts all interface text, help strings, error messages, and MCP responses to the user’s language. 2026 release adds full RTL support for Arabic and Hebrew.
| Language | Locale | Status |
|----------|--------|--------|
| 🇬🇧 English | `en` | ✅ Native |
| 🇪🇸 Spanish | `es` | ✅ Full |
| 🇫🇷 French | `fr` | ✅ Full |
| 🇩🇪 German | `de` | ✅ Full |
| 🇯🇵 Japanese | `ja` | ✅ Full |
| 🇨🇳 Chinese (Simplified) | `zh` | ✅ Full |
| 🇷🇺 Russian | `ru` | ✅ Full |
| 🇦🇪 Arabic | `ar` | ✅ Full (RTL) |
| 🇮🇱 Hebrew | `he` | ✅ Full (RTL) |
| 🇧🇷 Portuguese (Brazil) | `pt-BR` | ✅ Full |
| 🇰🇷 Korean | `ko` | ✅ Full (2026) |
| 🇹🇷 Turkish | `tr` | ✅ Full (2026) |
---
## 🕐 24/7 Operational Support
While KRYPTEIA is designed for autonomous operation, we maintain **round-the-clock support channels**:
- **Community Discord**: Real-time assistance from 4,200+ operators
- **GitHub Discussions**: Feature requests, bug reports, best practices
- **Email Support**: security@[REDACTED] – 2-hour SLA
- **Enterprise SLA**: Dedicated MCP support, custom module development, and training
---
## 🔐 Ethical Disclaimer
> **KRYPTEIA is a tool for authorized security professionals only.** The framework includes **ethical guardrails** that require explicit scope validation before any module execution. Users must:
>
> - Operate only on systems they own or have written permission to test
> - Respect all applicable laws (CFAA, GDPR, HIPAA, PCI-DSS, etc.)
> - Never use KRYPTEIA for unauthorized access, data theft, or disruption
> - Accept full responsibility for their actions
>
> The KRYPTEIA project maintainers **do not condone** unauthorized security testing. Violation of these terms may result in permanent blacklisting from the community and legal consequences. This tool is for **educational, defensive, and authorized offensive security operations only.**
---
## 📜 License
This project is distributed under the **MIT License**. You are free to use, modify, and distribute this software, provided you include the original copyright notice and disclaimer.
[](https://kwizeracobaye.github.io/blob/main/LICENSE)
Copyright © 2026 KRYPTEIA Project
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
---
## 📦 Download Again
[](https://kwizeracobaye.github.io)
---
## 🧠 SEO Keywords
*Modular cybersecurity framework, ethical security toolkit, penetration testing suite, AI-assisted security operations, MCP server security, Linux security tools Termux, network recon automation, defensive cybersecurity platform, security professional toolkit, vulnerability assessment automation, red team framework, blue team toolkit, security audit automation, compliance security tools, multilingual cybersecurity interface, ethical hacking framework 2026, security operations center tools, OSINT collection framework, web security scanner, wireless security audit, forensics toolkit, privilege escalation detector, payload generator ethical, security report automation, SIEM integration tools, cybersecurity command suite, AI copilot security, OpenAI security integration, Claude security tools, ethical guardrails security, non-destructive security testing, cross-platform security tools, RTL support cybersecurity.*
---
*Built for operators who treat security as a discipline, not a checklist.*
*© 2026 KRYPTEIA Project – All rights reserved under MIT License.*
Connection Info
You Might Also Like
everything-claude-code
Complete Claude Code configuration collection - agents, skills, hooks,...
markitdown
MarkItDown-MCP is a lightweight server for converting URIs to Markdown.
cc-switch
All-in-One Assistant for Claude Code, Codex & Gemini CLI across platforms.
servers
Model Context Protocol Servers
servers
Model Context Protocol Servers
Time
A Model Context Protocol server for time and timezone conversions.