by shinthink
⚡ Blitz Strike — a universal MCP penetration-testing toolbelt. Structured methodology: reconnaissance & attack-surface mapping, source-to-sink analysis, and live validation. 57 escalation chains, 130-tool catalog, intelligence data layer. One server, every agent.
# Add to your Claude Code skills
git clone https://github.com/shinthink/blitzstrikeSee how blitzstrike compares with popular alternatives.
blitzstrike is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by shinthink. ⚡ Blitz Strike — a universal MCP penetration-testing toolbelt. Structured methodology: reconnaissance & attack-surface mapping, source-to-sink analysis, and live validation. 57 escalation chains, 130-tool catalog, intelligence data layer. One server, every agent. It has 634 GitHub stars.
blitzstrike's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/shinthink/blitzstrike" and add it to your Claude Code skills directory (see the Installation section above).
blitzstrike is primarily written in TypeScript. It is open-source under shinthink on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh blitzstrike against similar tools.
No comments yet. Be the first to share your thoughts!
Unlocks once the catalog security scan passes (runs nightly).
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
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.
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.
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.
Blitz Strike is driven by the LLM — Claude, Hermes, OpenCode, Codex, or any MCP client. The LLM is the brain (plans, routes, delegates, judges); Blitz Strike is the deterministic hands + knowledge + guardrails.
A full engagement is one call, or a granular agent-orchestrated cycle:
npx blitzstrike serve --mcp # connect your agent, then ask it to
# "audit ./src" (source) or "audit https://example.com" (live)
The LLM classifies the target automatically (URL → live pipeline, filesystem
path → source pipeline), then drives recon → analyze → verify → review →
report — guided by the bundled doctrine (instructions + skills + per-step
next_steps) and fanned out across the platform's native sub-agents.
→ Autonomy & doctrine — how the LLM is steered.
bun build --compile — ship one executable per platform.bunx blitzstrike / npx blitzstrike.@modelcontextprotocol/sdk).# 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 CLI
npx 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 --mcp
{
"mcpServers": {
"blitzstrike": {
"command": "blitzstrike",
"args": ["serve", "--mcp"]
}
}
}
claude_desktop_config.json or .mcp.json.cursor/mcp.json.mcp.jsonmcp_servers: in config.yamlRun blitzstrike install to print the exact snippet.
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 sync-data # fetch heavy datasets (payloads + templates) on-demand
blitzstrike update # check for a newer version + refresh the data cache
blitzstrike version # print version
| 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.
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.
| Tool | Purpose |
|---|---|
blitz_scan(path, max_files) |
Scan a source tree: enumerate unauth entry points + dangerous sinks with file:line refs. |
blitz_file(path) |
Same scan, single file. |
| Tool | Purpose |
|---|---|
eagle_eye(path, symbol) |
Return a function's full body, sinks in scope, and auth gates in scope. |
eagle_grep(path, sink, max_hits) |
Precision sink grep — report a hit ONLY inside a function body, flagged guarded/un-guarded. |
enrich_scan(path, max_files) |
Scan + match detected sinks to escalation chains (chains.json). |
| Tool | Purpose |
|---|---|
strike_verify(url, method, data, headers, marker, timeout) |
Live HTTP verification with marker + negative control + baseline. |
strike_resolve(finding, verdict) |
Attach a live STRIKE verdict to a finding and advance its lifecycle. |
scope_check(target, scope, mode) |
Enforce scope before active testing (no-DoS, exclusion-aware, mode-gated). |
run_engagement(target, scope, mode, max_files) |
Full 3-tier audit in ONE call — scope gate → triage → chain enrichment → findings. |
list_chains() |
List all escalation chains in the data layer. |
fofa_search(query, size, fields) |
FOFA asset index search (needs FOFA_EMAIL + FOFA_KEY). |
nvd_lookup(cve_id) |
CVE lookup from NVD 2.0 (no key required). |
live_recon(url) |
Modular passive-first recon: fingerprint, WAF/tech/version, crawler, params, subdomains, Wayback, API discovery, port scan. |
| Tool | Purpose |
|---|---|
tool_lookup(name) |
Look up a tool's command + flags + install + check. |
list_tools() |
List all catalog tools, grouped by category. |
skill_lookup(topic) |
Search the skills/ playbook knowledge base by topic. |
list_skills() |
List all skill playbooks. |
read_skill(name) |
Read the full content of a playbook. |
ensure_tool(name) |
Check if a tool is installed; if not, auto-install it. |
| Tool | Purpose |
|---|---|
read_tool_manual(name) |
Read a full deep manual for a tool (317+ manuals). |
list_manuals() |
List all manuals + playbooks. |
read_playbook(name) |
Read an engagement playbook (web-app, api-security, AD, etc.). |
list_playbooks() |
List all 17 engagement playbooks. |
| Tool | Purpose |
|---|---|
cvss_score(AV, AC, PR, UI, S, C, I, A) |
Compute a deterministic CVSS v3.1 base score + vector + severity (self-computed, not read from NVD). |
dedup_findings(findings) |
Collapse findings that share a root cause (sink × source × CWE) into one group per root cause. |
generate_report(findings, format) |
Emit a reproducible markdown/JSON report with summary + SHA-256 integrity hash. |
run_enterprise_benchmark() |
Run the labelled enterprise corpus and report detection rate, false-positive rate, and precision. |
coverage_matrix() |
Enumerate language × sink-class coverage (4 languages × 15 sink classes) + coverage ratio. |
| Tool | Purpose |
|---|