Execute security tools directly via exec. No middleware, no MCP server — direct CLI access to 150+ security tools with methodology-driven workflows.
Before starting any engagement, run the tool checker to see what's installed:
bash scripts/tool-check.sh # All categories
bash scripts/tool-check.sh network # Just network tools
bash scripts/tool-check.sh web # Just web tools
Adapt the workflow to available tools. If a preferred tool is missing, suggest installation or use alternatives.
When given a CTF challenge:
references/ctf-playbook.md for the matching category section| Indicators | Category |
|---|---|
| ----------- | ---------- |
| URL, web app, login page, cookies | web |
| Ciphertext, hash, encoded data, RSA, AES | crypto |
| Binary file, ELF, PE, segfault, nc connection | pwn |
| Image file, pcap, memory dump, disk image | forensics |
| Binary to analyze, "what does this do", crackme | rev |
| Username, location, social media, domain | OSINT |
| Encoding, QR code, audio file, esoteric | misc |
For reconnaissance or penetration testing engagements:
references/recon-methodology.md for the full phased approachFor quick syntax lookup on any of the 80+ tools, read references/tool-reference.md.
nmap ... -oA /tmp/nmap_results| head -50 or | tail -20 for initial review> /tmp/__results.txt --batch flags where available to avoid interactive prompts (e.g., sqlmap)If critical tools are missing, suggest install commands:
sudo apt install pip3 install go install @latest sudo apt install kali-tools-* for categoriesUse exec with background: true and yieldMs for scans that take minutes:
exec: nmap -sV -sC -p- <TARGET> -oA /tmp/full_scan
background: true, yieldMs: 30000
Check progress with process(action=poll).
共 1 个版本