Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By 26zl
Run cybersecurity operations with 850+ on-demand skills covering CTF, penetration testing, bug bounty, DFIR, detection engineering, cloud security, and red/blue team work. Skills are plain Markdown and activate by task without permanently consuming context.
npx claudepluginhub 26zl/cybersec-toolkit --plugin cybersec-toolkitCreate forensically sound bit-for-bit disk images using dd and dcfldd while preserving evidence integrity through hash verification.
Use when adding a new cybersecurity tool to this installer. Walks through editing the right module file, adding to tools_config.json, running validators, and syncing MCP server data if needed. Triggers on phrases like "add tool", "add <toolname>", "register a new tool", "include X in the installer".
Use for AI/LLM security assessments, prompt injection, RAG security, agent/tool permissioning, model supply chain, LLM red teaming, AI governance, eval design, data leakage, jailbreak testing, and secure AI application review.
Offensive AI security testing and exploitation framework. Systematically tests LLM applications for OWASP Top 10 vulnerabilities including prompt injection, model extraction, data poisoning, and supply chain attacks. Integrates with pentest workflows to discover and exploit AI-specific threats.
Detect dangerous ACL misconfigurations in Active Directory using ldap3 to identify GenericAll, WriteDACL, and WriteOwner abuse paths
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
753 cybersecurity skills covering web security, pentesting, DFIR, threat intelligence, cloud security, malware analysis, and more.
Assist with security incident response
734+ 网络安全技能,涵盖 Web 安全、渗透测试、DFIR、威胁情报、云安全、恶意软件分析等领域。中文版本。
71-skill bug-hunting & external red-team bundle for Claude Code — 48 hunt-* web/vuln-class + framework skills, enterprise platform attack chains (M365/Entra, Okta, SharePoint, vCenter, SSL-VPN, APK), recon/OSINT, reporting & validation gates, and Burp MCP integration. Skills auto-load by topic; 15 slash commands included.
Editorial "Security Engineer" bundle for Claude Code from Antigravity Awesome Skills.
🛡️ Security Engineer — Security Engineer + Adversarial Security Specialist
______ __ _____
/ ____/_ __/ /_ ___ _____/ ___/___ _____
/ / / / / / __ \/ _ \/ ___/\__ \/ _ \/ ___/
/ /___/ /_/ / /_/ / __/ / ___/ / __/ /__
\____/\__, /_.___/\___/_/ /____/\___/\___/
/____/ by 26zl
Toolkit
Cybersecurity toolkit with built-in AI integration. An embedded MCP (Model Context Protocol) server lets any MCP-capable AI -- Claude Code, Claude Desktop, Cursor -- query the tool registry, check install status, recommend the right tools for a CTF category or bug-bounty target, and execute them with enforced safety policies (argument sanitization, network allowlists, rate limiting, audit logging). Jump to MCP Server (AI Integration).
Bundled with a modular installer for Linux and Termux (Android) covering 580+ tools, 18 modules, 14 profiles, and 12 install methods.
Two entry points share one tool registry. An operator runs the bash installer to put tools on disk; an AI agent talks to the MCP server to discover, recommend, and safely execute those same tools. tools_config.json is the single source of truth the modules define and the MCP advisors read, and CI validators keep the Python and bash sides in sync.
flowchart TB
user(["Operator"]):::actor
ai(["AI agent — Claude Code / Cursor / local LLM"]):::actor
subgraph INSTALL["Installer (bash)"]
direction TB
sh["install.sh"]:::core
prof["14 profiles<br/>profiles/*.conf"]:::data
mod["18 modules<br/>modules/*.sh<br/>per-module tool arrays"]:::core
meth["12 install methods<br/>apt → pipx → go → cargo →<br/>binary → gem → docker → git"]:::core
sh --> prof --> mod --> meth
end
subgraph MCP["MCP server (Python / FastMCP)"]
direction TB
srv["server.py<br/>14 AI tools"]:::core
adv["tools_db · profiles<br/>ctf_advisor · bounty_advisor"]:::core
sec["security.py — policy engine<br/>allowlist · arg sanitize<br/>net policy · rate limit · audit"]:::sec
rem["remote.py<br/>SSH hosts"]:::core
srv --> adv
srv --> sec --> rem
end
reg[("tools_config.json<br/>tool registry — 580+")]:::data
disk["Installed tools<br/>/usr/local/bin + .versions"]:::data
post["verify · update · remove · backup"]:::core
skills["860 Claude skills + coordinators<br/>finding-triage · security-comms · authorization-gate"]:::skill
ci["CI validators<br/>shellcheck · bats · ruff · pytest<br/>validate_tools_config · validate_mcp_sync"]:::ci
user -->|"sudo ./install.sh"| sh
ai <-->|"stdio MCP"| srv
ai -.->|"activate on demand"| skills
meth -->|"installs"| disk
sec -->|"run_tool / run_pipeline / run_script"| disk
disk --- post
mod -.->|"defines"| reg
adv -.->|"reads"| reg
ci -.->|"keep Python ↔ bash in sync"| reg
ci -.-> srv
classDef actor fill:#1f6feb,stroke:#0b3d91,color:#ffffff;
classDef core fill:#161b22,stroke:#30363d,color:#e6edf3;
classDef data fill:#1c2a1c,stroke:#2ea043,color:#e6edf3;
classDef sec fill:#3d1d1d,stroke:#f85149,color:#ffffff;
classDef skill fill:#2d2238,stroke:#a371f7,color:#e6edf3;
classDef ci fill:#33291a,stroke:#d29922,color:#e6edf3;
Reading the diagram: solid arrows are runtime/install actions, dashed arrows are data relationships. The installer (left) and MCP server (right) never call each other — they meet at the registry and at the tools on disk. security.py is the gate every AI-driven execution passes through; nothing reaches the shell without clearing the allowlist, argument sanitization, and network policy. Skills are methodology context the AI loads on demand; they guide how tools get used but sit outside the execution path.
All required runtimes (Python, Go, Ruby, Java, Rust, Node.js), dev libraries, pipx, and build tools are installed automatically. The only prerequisite is a supported Linux distro. Windows and macOS are not supported (use WSL or Docker).