MCP Pentest
An automated penetration testing framework that enables intelligent security assessments through reconnaissance, vulnerability scanning, and controlled exploitation. Features AI-driven workflow management with comprehensive reporting for authorized security testing.
README
MCP Pentest - Automated Penetration Testing Framework
MCP (Model Context Protocol) server untuk automated penetration testing yang cerdas. Framework ini dapat secara otomatis melakukan reconnaissance, vulnerability scanning, dan controlled exploitation berdasarkan teknologi target yang terdeteksi.
🚀 Features
🔍 Reconnaissance Tools
- Port Scanning - Comprehensive Nmap integration dengan berbagai scan modes
- Subdomain Enumeration - Certificate transparency logs + DNS bruteforcing
- Technology Detection - Automatic web technology fingerprinting
- Directory Bruteforcing - Intelligent directory and file discovery
🛡️ Vulnerability Assessment
- Nuclei Integration - Automated vulnerability scanning dengan template database
- Nikto Scanning - Web server vulnerability detection
- SQLMap Integration - SQL injection testing
- Custom Web Vulnerability Checks - XSS, Directory Traversal, Command Injection, dll
⚡ Exploitation Modules
- Metasploit Integration - Automatic exploit search dan execution
- Custom Exploit Attempts - Framework-specific exploitation
- Technology-Specific Exploits - Targeted attacks berdasarkan tech stack
- Proof-of-Concept Generation - Automated PoC creation
🤖 Intelligent Workflow Engine
- Adaptive Decision Making - AI-driven next step recommendations
- Risk-Based Prioritization - Smart vulnerability prioritization
- Technology-Aware Testing - Customized testing berdasarkan detected technologies
- Automated Workflow Management - Sequential phase execution dengan dependency handling
📊 Comprehensive Reporting
- Multi-Format Reports - HTML, PDF, JSON, Markdown output
- Executive Summaries - Business-friendly risk assessments
- Technical Details - Detailed vulnerability descriptions dan remediation
- Evidence Collection - Automatic proof collection dan documentation
📋 Prerequisites
Required Tools
Pastikan tools berikut sudah terinstall di sistem:
# Network scanning
sudo apt install nmap
# Web vulnerability scanning
go install -v github.com/projectdiscovery/nuclei/v3/cmd/nuclei@latest
# Web server scanning
sudo apt install nikto
# SQL injection testing
sudo apt install sqlmap
# Optional: Metasploit (untuk advanced exploitation)
curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall
chmod 755 msfinstall
sudo ./msfinstall
Node.js Dependencies
npm install
🛠️ Installation
- Clone repository
git clone <repository-url>
cd mcp-pentest
- Install dependencies
npm install
- Build project
npm run build
- Configure MCP client Tambahkan ke file konfigurasi MCP client Anda:
{
"mcpServers": {
"pentest": {
"command": "node",
"args": ["path/to/mcp-pentest/dist/index.js"],
"env": {}
}
}
}
🎯 Usage Examples
Basic Automated Pentest
// Full scope automated pentest
await mcp.call("auto_pentest", {
target: "example.com",
scope: "full",
intensity: "active"
});
Reconnaissance Only
// Port scanning
await mcp.call("nmap_scan", {
target: "192.168.1.1",
scan_type: "aggressive"
});
// Technology detection
await mcp.call("tech_detection", {
url: "https://example.com"
});
// Subdomain enumeration
await mcp.call("subdomain_enum", {
domain: "example.com"
});
Vulnerability Scanning
// Nuclei scan with specific templates
await mcp.call("nuclei_scan", {
target: "https://example.com",
templates: ["cves", "vulnerabilities"],
severity: "high"
});
// SQL injection testing
await mcp.call("sqlmap_scan", {
url: "https://example.com/login.php",
data: "username=admin&password=test"
});
Exploitation Attempts
// Search for Metasploit modules
await mcp.call("metasploit_search", {
service: "Apache 2.4.41",
platform: "linux"
});
// Attempt exploitation
await mcp.call("exploit_attempt", {
target: "192.168.1.100",
vulnerability: "SQL Injection",
payload: "UNION SELECT"
});
Intelligent Next Steps
// Get AI-powered recommendations
await mcp.call("suggest_next_steps", {
scan_results: JSON.stringify(previousResults)
});
Report Generation
// Generate comprehensive report
await mcp.call("generate_report", {
target: "example.com",
format: "html"
});
🔧 Configuration
Scan Intensity Levels
Passive
- Certificate transparency logs
- DNS enumeration
- Header analysis
- Public information gathering
Active
- Port scanning
- Directory bruteforcing
- Vulnerability scanning
- Service enumeration
Aggressive
- Full port range scanning
- Intensive directory bruteforcing
- Active exploitation attempts
- Comprehensive vulnerability testing
Scope Options
Network
- Port scanning
- Service enumeration
- Network vulnerability assessment
Web
- Web application testing
- Technology fingerprinting
- Web vulnerability scanning
Full
- Comprehensive assessment
- Network + Web testing
- Complete attack surface analysis
🛡️ Security Considerations
Ethical Usage
⚠️ IMPORTANT: Framework ini hanya boleh digunakan untuk:
- Authorized penetration testing
- Security research dengan permission
- Testing terhadap sistem milik sendiri
- Educational purposes
Safety Features
- Rate limiting - Automatic request throttling
- Timeout controls - Prevent long-running scans
- Scope validation - Target validation dan restriction
- Safe exploitation - Controlled dan reversible tests
Legal Compliance
- Pastikan ada written authorization sebelum testing
- Comply dengan local laws dan regulations
- Respect responsible disclosure practices
- Document semua testing activities
📊 Sample Output
Automated Pentest Results
{
"workflow": {
"target": "example.com",
"scope": "full",
"phases": [
{
"name": "reconnaissance",
"status": "completed",
"tools": ["nmap_scan", "subdomain_enum", "tech_detection"]
}
],
"results": {
"reconnaissance": {
"open_ports": [
{"port": 80, "service": "http", "version": "Apache 2.4.41"},
{"port": 443, "service": "https", "version": "Apache 2.4.41"}
],
"technologies": [
{"technology": "WordPress", "version": "5.8", "confidence": 95}
]
},
"vulnerabilities": [
{
"name": "Outdated WordPress",
"severity": "medium",
"description": "WordPress version 5.8 has known vulnerabilities"
}
],
"risk_score": 65,
"threat_level": "medium"
}
}
}
🔄 Workflow Engine
Framework menggunakan intelligent workflow engine yang dapat:
- Analyze scan results - Automatically interpret findings
- Make decisions - Determine next testing steps
- Adapt strategy - Modify approach based on discoveries
- Prioritize actions - Focus on high-impact vulnerabilities
- Generate insights - Provide actionable recommendations
Decision Making Logic
Reconnaissance → Technology Detection → Vulnerability Assessment → Risk Analysis → Exploitation → Reporting
↓ ↓ ↓ ↓ ↓ ↓
Port Discovery → CMS/Framework → Targeted Scanning → Priority Queue → Controlled → Evidence
Subdomain Enum → Version Info → Custom Checks → Risk Scoring → Attempts → Collection
🏗️ Architecture
┌─────────────────┐ ┌──────────────────┐ ┌─────────────────┐
│ MCP Client │ │ MCP Protocol │ │ Pentest Server │
│ (Claude/etc) │◄──►│ Transport │◄──►│ (Node.js) │
└─────────────────┘ └──────────────────┘ └─────────────────┘
│
┌─────────────────┐
│ Tool Integration │
│ - Nmap │
│ - Nuclei │
│ - Nikto │
│ - SQLMap │
│ - Metasploit │
└─────────────────┘
🤝 Contributing
- Fork repository
- Create feature branch
- Implement changes dengan tests
- Submit pull request
- Follow security best practices
📜 License
MIT License - See LICENSE file for details
⚠️ Disclaimer
Tool ini dibuat untuk tujuan educational dan authorized security testing. User bertanggung jawab untuk memastikan penggunaan yang legal dan ethical. Developer tidak bertanggung jawab atas penyalahgunaan tool ini.
🆘 Support
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。