PurpleAILAB/Decepticon

Autonomous Hacking Agent for Red Team

About the project

Decepticon is an autonomous red-team agent that coordinates AI agents, security tools, sandboxes, and supporting services for authorized cybersecurity assessments. Security researchers and red teams can run it through its Docker stack, cloud service, command-line interface, or Python SDK, with the catalogue entries representing its available skills.

5.5kStars on the repository
200Mods indexed here, across every type
13d agoLast push, which is what freshness is scored on
Apache-2.0Licence, which decides whether bodies are shown

chain-ssrf-to-rce

73

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Build and validate SSRF pivot chains toward metadata/infra control and final code execution impact.

not rated 5.5k +40 13d ago C SkillSpector: pass 26 tokens original Apache-2.0

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Build chains from XSS into account takeover or privileged action execution.

not rated 5.5k +40 13d ago A SkillSpector: pass 21 tokens original Apache-2.0

command-injection

75

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Hunt OS command injection (CWE-78) — user input reaching shell, exec, or system calls. Covers argument-array bypasses, path confusion, and template-string injection in modern frameworks.

not rated 5.5k +40 13d ago B SkillSpector: warn 44 tokens original Apache-2.0

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Hunt LLM training-data and model poisoning (OWASP LLM04:2025) — adversarial inputs that bias future model behaviour through fine-tuning, RLHF, or continuous-learning loops.

not rated 5.5k +40 13d ago A SkillSpector: warn 48 tokens original Apache-2.0

deserialization

77

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Hunt insecure deserialization (CWE-502) across Python pickle, Java ObjectInputStream / Jackson / SnakeYAML, .NET BinaryFormatter / DataContractJson, PHP unserialize, Ruby Marshal/YAML.load, and Node.js vm. Direct path to unauthenticated RCE.

not rated 5.5k +40 13d ago B SkillSpector: warn 62 tokens original Apache-2.0

excessive-agency

78

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Hunt LLM excessive agency (OWASP LLM06:2025) — agentic systems granted too many tools, too broad permissions per tool, or unsupervised authority to act on the user / business behalf, producing financial loss, data loss, or destructive operations from a single bad token.

not rated 5.5k +40 13d ago A SkillSpector: warn 67 tokens original Apache-2.0

idor

79

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Hunt Insecure Direct Object Reference (CWE-639) — missing authorization checks on object IDs. Covers horizontal vs vertical privilege escalation, UUID vs integer guessing, and GraphQL introspection-driven IDOR discovery.

not rated 5.5k +40 13d ago B SkillSpector: warn 45 tokens original Apache-2.0

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Hunt improper LLM output handling (OWASP LLM05:2025) — downstream code that trusts unstructured model output and renders / executes / shells it without sanitisation, producing XSS, SSRF, SQL injection, RCE, and SSTI via the model channel.

not rated 5.5k +40 13d ago B SkillSpector: warn 64 tokens original Apache-2.0

misinformation

81

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Hunt LLM misinformation / overreliance (OWASP LLM09:2025) — confident-but-wrong outputs that flow into downstream automated decisions, compliance reports, customer communications, or autonomous code commits without verification.

not rated 5.5k +40 13d ago A SkillSpector: warn 49 tokens original Apache-2.0

ml-model-extraction

82

PurpleAILAB/Decepticon

Skill Claude Code

Extract a functional clone of a black-box ML model via prediction API queries, and infer whether specific records were in the training set (membership inference).

not rated 5.5k +40 13d ago B SkillSpector: warn 34 tokens original Apache-2.0

patch-diff-research

83

PurpleAILAB/Decepticon

Skill Claude Code

Authorized patch-diff workflow for deriving and validating vulnerability variants from a known vulnerable-to-fixed source change.

not rated 5.5k +40 13d ago A SkillSpector: pass 26 tokens original Apache-2.0

path-traversal

84

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Hunt directory traversal and archive traversal (ZipSlip/TarSlip) from user input to filesystem operations.

not rated 5.5k +40 13d ago A SkillSpector: warn 26 tokens original Apache-2.0

pattern-exhaustion

85

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Systematic pattern exhaustion methodology. Load after finding any confirmed vulnerability to search for all instances of the same root cause pattern across the codebase.

not rated 5.5k +40 13d ago A SkillSpector: warn 33 tokens original Apache-2.0

prompt-injection

86

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Hunt LLM prompt injection and tool-call hijacking in modern AI-integrated applications (CWE-1427). Covers indirect injection via RAG, tool abuse, exfiltration chains, and jailbreak-to-RCE pivots on agentic systems.

not rated 5.5k +40 13d ago A ✓ AI review SkillSpector: warn 55 tokens original Apache-2.0

prototype-pollution

87

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Hunt JavaScript prototype pollution (CWE-1321) — the 2023-2026 meta-vulnerability that chains into RCE, auth bypass, and SSRF on most Node.js stacks.

not rated 5.5k +40 13d ago A SkillSpector: warn 47 tokens original Apache-2.0

redos

88

PurpleAILAB/Decepticon

Skill Claude Code

Hunt ReDoS (CWE-1333, Catastrophic Backtracking) — identify regexes with nested quantifiers or overlapping alternation that cause super-linear matching time, trace tainted input paths to regex sinks, demonstrate timing PoC, and validate with response-time delta. Covers PCRE/RE2/V8/Python re engine differences.…

not rated 5.5k +40 13d ago A SkillSpector: warn 117 tokens original Apache-2.0

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Hunt LLM sensitive-information disclosure (OWASP LLM02:2025) — leakage of PII, secrets, internal source, model details, and other-tenant data through model outputs, training-data extraction, or retrieval-side joins.

not rated 5.5k +40 13d ago A SkillSpector: warn 55 tokens original Apache-2.0

sql-injection

90

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Hunt SQL injection (CWE-89) via source-level taint tracking. Covers string concat, format-string, ORM raw queries, second-order injection, and NoSQL injection in MongoDB/DynamoDB.

not rated 5.5k +40 13d ago A SkillSpector: pass 47 tokens original Apache-2.0

ssrf

91

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Hunt Server-Side Request Forgery (CWE-918) through taint analysis from user-controlled URLs to HTTP client sinks. Covers cloud metadata pivoting, DNS rebinding, gopher smuggling, and the IMDSv1 → IAM role chain that turns SSRF into RCE.

not rated 5.5k +40 13d ago C SkillSpector: warn 63 tokens original Apache-2.0

ssti

92

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Hunt server-side template injection across Jinja2/Twig/Freemarker/Velocity/Handlebars and validate progression from expression injection to code execution.

not rated 5.5k +40 13d ago A SkillSpector: pass 33 tokens original Apache-2.0

supply-chain

93

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Hunt LLM supply-chain compromise (OWASP LLM03:2025) — malicious or backdoored models, datasets, adapters, plugins, MCP servers, and tokenizer / framework dependencies that ship inside an AI-integrated product.

not rated 5.5k +40 13d ago A SkillSpector: warn 52 tokens original Apache-2.0

PurpleAILAB/Decepticon

Skill Claude CodeCodex

Hunt LLM system-prompt leakage (OWASP LLM07:2025) — exfiltration of the privileged system prompt revealing internal rules, secrets baked in, tool inventory, and business logic that should not be client-visible.

not rated 5.5k +40 13d ago A SkillSpector: warn 55 tokens original Apache-2.0

ti-anyrun-lookup

95

PurpleAILAB/Decepticon

Skill Claude Code

ANY.RUN Threat Intelligence Lookup workflow — query hashes, domains, IPs, and behavioral indicators against ANY.RUN's sandbox corpus. Covers TI Lookup query syntax, search operators, free tier constraints, result correlation with engagement findings, and integration with sandbox analysis.

not rated 5.5k +40 13d ago A SkillSpector: warn 56 tokens original Apache-2.0

ti-ioc-extraction

96

PurpleAILAB/Decepticon

Skill Claude Code

Automated IOC extraction from threat reports, logs, and unstructured text — parse hashes, IPs, domains, URLs, email addresses, and CVEs. Covers regex-based extraction, defanging/refanging, bulk hash lookup, IOC deduplication, YARA rule generation from IOCs, and STIX/TAXII formatting for sharing.

not rated 5.5k +40 13d ago A SkillSpector: warn 75 tokens original Apache-2.0

At most 3 mods per repository are shown here, and a mod shipped inside a plugin is left to that plugin's page — the rest are on their repository pages: