Blitz Strike
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Blitz Strikerun an engagement on example.com and verify findings"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Blitz Strike
Reconnaissance at speed. Analysis in depth. Validation before report.
Blitz Strike is a structured penetration-testing methodology — reconnaissance,
source analysis, and validation — delivered as a universal MCP server. It
enumerates the attack surface (BLITZ), traces source-to-sink reachability
(EAGLE-EYE), and verifies each finding live before it is reported (STRIKE).
One server, every agent: scope enforcement to submission-ready findings in a
single run_engagement call, with the relevant exploit-tool manual attached to
every result.
A scan hit is a hypothesis. A live test is the verdict.
Blitz Strike exists to eliminate the two most common failure modes in automated security assessment: false positives from surface-level pattern matching, and unverified findings reported without live confirmation.
What it does
Blitz Strike is a Model Context Protocol (MCP) server (TypeScript / Bun) that
packages a 3-tier security-audit methodology as callable tools — and runs the
whole engagement server-side, so a single run_engagement call works from
Claude Code, Cursor, Hermes, OpenCode, Claude Desktop, Gemini, or any MCP client.
The three tiers
Blitz Strike maps a structured penetration-testing methodology — reconnaissance, source analysis, and validation — into three tool tiers executed server-side.
Tier | Name | Phase | What it does |
1 | BLITZ | Reconnaissance & attack-surface mapping | Enumerates the exposed attack surface at scale: unauthenticated entry points, dangerous sinks, and authentication boundaries. |
2 | EAGLE-EYE | Static analysis & data-flow tracing | Traces source-to-sink reachability and enriches findings against the escalation-chain graph. Confirms a sink is reachable, unauthenticated, and exploitable — not merely present. |
3 | STRIKE | Validation & exploitation | Performs live verification (marker reflection + negative control), scope enforcement, and orchestration so a finding is confirmed before it is ever reported. |
Reconnaissance → analysis → validation. Nothing is reported until STRIKE confirms it.
Related MCP server: PengStrike AI MCP
Why TypeScript / Bun
Single static binary via
bun build --compile— ship one executable per platform.Zero-install distribution via
bunx blitzstrike/npx blitzstrike.MCP TypeScript SDK first-class (
@modelcontextprotocol/sdk).One toolchain for dev + test + build + compile.
Quickstart (30 seconds)
# Zero-install — works from any MCP client, no clone, no build
npx -y blitzstrike doctor # verify the environment
npx -y blitzstrike install # auto-register with every detected agent CLInpx blitzstrike install detects every installed agent CLI (Claude Code,
Cursor, OpenCode, Codex, Hermes, Gemini, Windsurf, Copilot, Cline) and writes
the correct MCP config to each one in its native format. Restart your agent and
call run_engagement.
From source:
git clone https://github.com/shinthink/blitzstrike.git
cd blitzstrike
bun install
bun run src/index.ts serve --mcpClient Configuration (works in any MCP client)
{
"mcpServers": {
"blitzstrike": {
"command": "blitzstrike",
"args": ["serve", "--mcp"]
}
}
}Claude Code / Desktop:
claude_desktop_config.jsonor.mcp.jsonCursor:
.cursor/mcp.jsonOpenCode:
.mcp.jsonHermes:
mcp_servers:inconfig.yamlGemini / Copilot: native MCP config
Run blitzstrike install to print the exact snippet.
CLI
blitzstrike serve --mcp # start MCP server over stdio (default)
blitzstrike doctor # health check: runtime + 130-tool catalog + creds
blitzstrike install # write MCP config to detected clients (Claude/Cursor/OpenCode)
blitzstrike install --dry-run # preview the config without writing
blitzstrike version # print versionWhat doctor checks
Check | Status you'll see |
Runtime (bun/node) | OK / FAIL + fix |
Security tools catalog | 63/130 installed, 67 on-demand |
FOFA credentials | OK / WARN + fix |
Data layers (chains + tools-catalog) | present / missing |
Each issue carries a fix: line — no guessing.
What install does
blitzstrike install detects which MCP client config files already exist
(Claude ~/.claude.json, Cursor ~/.cursor/mcp.json, project .mcp.json) and
merges the Blitz Strike server entry in — it never overwrites your existing
MCP servers. With no client detected, it prints the snippet for manual paste.
Tools
BLITZ — attack-surface triage
Tool | Purpose |
| Scan a source tree: enumerate unauth entry points + dangerous sinks with file:line refs. |
| Same scan, single file. |
EAGLE-EYE — deep trace
Tool | Purpose |
| Return a function's full body, sinks in scope, and auth gates in scope. |
| Precision sink grep — report a hit ONLY inside a function body, flagged guarded/un-guarded. |
| Scan + match detected sinks to escalation chains (chains.json). |
STRIKE — verify + recon + orchestrate
Tool | Purpose |
| Live HTTP verification with marker + negative control. |
| Enforce scope before active testing (no-DoS, exclusion-aware, mode-gated). |
| Full 3-tier audit in ONE call — scope gate → triage → chain enrichment → findings. |
| List all escalation chains in the data layer. |
| FOFA asset index search (needs |
| CVE lookup from NVD 2.0 (no key required). |
CATALOG — breadth layer (tools + skills knowledge base)
Tool | Purpose |
| Look up a tool's command + flags + install + check. |
| List all catalog tools, grouped by category. |
| Search the skills/ playbook knowledge base by topic. |
| List all skill playbooks. |
| Read the full content of a playbook. |
| Check if a tool is installed; if not, auto-install it. |
MANUALS — deep tool reference + playbooks (wired into flow)
Tool | Purpose |
| Read a full deep manual for a tool (270+ manuals). |
| List all manuals + playbooks. |
| Read an engagement playbook (web-app, api-security, AD, etc.). |
| List all 17 engagement playbooks. |
INTELLIGENCE — data layer (WAF + correlations + fuzzer)
Tool | Purpose |
| Detect a WAF from response headers/body (139 signatures). |
| Correlate tech to known vulns + CVEs (89 technologies). |
| Correlate CVE to product + targets + severity (53 CVEs). |
| Correlate port to service + attack vectors (103 ports). |
| Fuzzing payloads + vulnerable patterns + chain rules. |
| Counts of every intelligence dataset. |
| Find exploit payloads (66 categories from PayloadsAllTheThings). |
| Read a full payload collection. |
| Find nuclei detection templates (11.9k YAML signatures). |
The intelligence layer (WAF signatures, tech/CVE/port correlations, fuzzer data, vuln ontology, exploit payloads, nuclei detection templates) is sourced from airecon (MIT), PayloadsAllTheThings (MIT), and nuclei-templates (MIT) — loaded at runtime and wired into the tool surface above.
270 tool manuals + 17 playbooks from kali-pentest (Apache-2.0). These are NOT decoration — they are wired into the flow:
tool_lookup(name)auto-attaches the tool's full manual.run_engagement()attaches the relevant manual per matched chain'stoolsfield.
MEMORY — long-term knowledge (self-growing)
Tool | Purpose |
| Save a reusable insight (deduped). verified=true only if marker reflected + negative control inert. |
| Search memory by topic/tag/content, scored. |
| List all memory entries, grouped by type. |
Memory is append-only JSONL at ~/.blitzstrike/memory.jsonl (override with
BLITZSTRIKE_HOME). run_engagement auto-captures matched escalation chains
as pattern entries (deduped by chain id), so the knowledge base grows with
every engagement — no duplicate spam, and only verified=true entries are
authoritative.
Tools Catalog (tools-catalog.json)
130 self-written security tools (not copied from any project), each with command base, key flags, install command per platform, check_installed probe, phase, tags, alternatives, requires_root, pipes, and homepage.
Category | Count | Examples |
recon | 23 | subfinder, amass, httpx, naabu, katana, trufflehog |
exploitation | 13 | sqlmap, commix, dalfox, hydra, hashcat, phpggc |
blue-team (defensive) | 13 | suricata, zeek, osquery, wazuh, sigma, yara, trivy |
reverse-engineering | 12 | ghidra, radare2, gdb, pwndbg, angr, binwalk |
enumeration | 11 | nuclei, ffuf, gobuster, arjun, wafw00f |
forensics | 10 | volatility3, autopsy, tshark, foremost, steghide |
active-directory | 8 | netexec, impacket, bloodhound, certipy, kerbrute |
mobile | 7 | frida, objection, mobsf, apktool, jadx |
post-exploitation | 6 | linpeas, pspy, chisel, ligolo-ng, pwncat |
red-team | 6 | sliver, havoc, metasploit, evilginx3, gophish |
utility | 6 | curl, jq, anew, notify |
web | 4 | wpscan, joomscan, droopescan, cmseek |
wireless | 4 | aircrack-ng, wifite, bettercap |
cloud | 4 | pacu, prowler, scoutsuite, cloudfox |
crypto | 3 | hashid, ciphey, rsactftool |
Skills Knowledge Base (skills/)
32 skill playbooks (markdown) — universal, license-safe hidden gems from the internet (MIT). Our personal attack-tree playbooks were removed (they were private methodology, not universal exploit scripts).
adversary-playbook (14, MIT) —
ap-*prefix. Rare offensive playbooks: cross-forest-trust-abuse, gitea-ci-injection, kerberos-trust-abuse, multi-domain-ad-attacks, client-side-crypto-forgery.hack.proof (18, MIT) —
hp-*prefix. End-to-end audit playbooks: full-security-audit, smart-contract-audit, api-security-test, sast-code-review, container-image-scan, iac-cloud-posture.
See ATTRIBUTION.md for full license/copyright notices.
Escalation Chains (chains.json)
57 data-driven escalation chains, each with ordered steps carrying:
tool_hint— which Blitz Strike tool to usesuccess_criteria— binary observable for the stepinvariant_check— the assumption that MUST hold for exploitationnegative_control— how to refute the finding
Examples: ssrf_cloud_metadata, lfi_log_poison_rce, appkey_leak_deserialization_rce,
hmac_empty_key_forgery, intval_form_id_bypass, extract_variable_injection_lfi,
split_controller_upload_bypass, race_condition_double_spend, ssti_template_injection_rce,
jwt_alg_confusion_forgery, cache_poisoning_xss, subdomain_takeover, and more.
Edit chains.json to add knowledge — never hardcode in source.
Environment Variables
Variable | Required | Purpose |
| For | FOFA account email |
| For | FOFA API key |
All other tools need no credentials.
Build
bun install # deps
bun run typecheck # tsc --noEmit
bun run build # ESM bundle → dist/index.js
bun run compile # single static binary → dist/blitzstrikeMethodology Notes
Sink ≠ vuln. A dangerous function in the same file as an unauth handler does not mean the handler calls it. Use
eagle_eyeto confirm scope.File write ≠ RCE (CF-003). A writable file must be loaded by the runtime to be execution.
Default server config only. Default Apache
FilesMatch .+\.ph(ar|p|tml)$has a$anchor —.php.jpgdoes not execute.Every finding is a HYPOTHESIS until
strike_verifyreflects your marker AND the chain'snegative_controlstays inert.
Disclaimer
This tool is provided for educational and authorized security research only. Do not use against systems without explicit permission from the owner.
Further Reading
Installation — prerequisites, install, client registration.
Usage — one-call engagement, granular path, modes, memory.
Manifesto — the invariants that drive the methodology.
Contributing — how to add chains, tools, and data.
Changelog — version history.
Roadmap — where this is headed.
Security — responsible disclosure + authorized use.
Third-Party Notices — vendored data licenses.
This server cannot be deployed
Maintenance
Related MCP Connectors
Search, vet & assemble MCP servers from your agent: verified tools, risk labels, and trust scores.
Your org's AI agents, tasks, runs, search, and brain files as MCP tools and resources.
- gatewayOAuthai.sealgate
MCP gateway with runtime security policy, tool-call-level control, and audit of agent actions.
MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceAn MCP server that exposes over 20 standard penetration testing utilities, such as Nmap, SQLMap, and OWASP ZAP, as callable tools for AI agents. It enables natural language control over complex security workflows for automated and interactive penetration testing.96-
- AlicenseNot gradedqualityCmaintenanceTurns any MCP-capable AI agent into a professional penetration testing platform with 150+ security tools, adaptive async tasks, and crash-proof concurrency.1MIT
- AlicenseAqualityBmaintenanceMCP server for offensive-security tooling, enabling AI agents to run reconnaissance, CVE intelligence, JavaScript analysis, HTTP probing, and port scanning against authorized targets.10MIT
- FlicenseAqualityCmaintenanceMCP server providing direct tool-access to security-testing primitives for bug bounty hunting, including recon, request replay, IDOR/BOLA fuzzing, vulnerability detection, secrets scanning, and persistent hunt memory with confidence-scored findings.38-