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.
Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/PurpleAILAB/Decepticonnpx agentmods add skills/purpleailab/decepticon/cveWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/purpleailab/decepticon/cve)<a href="https://agentmods.dev/skills/purpleailab/decepticon/cve"><img src="https://agentmods.dev/badge/skills/purpleailab/decepticon/cve.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00094 | $0.03123 |
| Opus 5 | $0.00047 | $0.01562 |
| Sonnet 5 | $0.00019 | $0.00625 |
| Haiku 4.5 | $0.00009 | $0.00312 |
Grade A, and why
cve scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
Concrete probes. Save every output to a file; do NOT inline curl bodies. Copies of this mod
1 near-identical copy found in the catalogue:
- cve — 100% identical, 0 lines differ
How it starts
The opening of the file, as written. The whole thing — 195 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CVE / Known-Exploit Methodology
Exploits known, version-specific vulnerabilities by fingerprinting the target's software stack, looking up the matching CVE record, retrieving a public PoC, and adapting it to the live target. The exploit agent has two dedicated tools registered for this skill — cve_lookup and cve_poc_lookup — and this skill is the only place that calls them. If you load this skill, you MUST invoke both tools.
When to load
Load this skill (in addition to or instead of an attack-class skill) when ANY of the following hold:
- The challenge
Tags:line containscve. - Recon
SUMMARY.mdfingerprinted a CMS, framework, or service with a concrete version (e.g.WordPress 5.7.1,Apache Struts 2.5.16,Drupal 7.58,Spring Framework 5.3.17,Log4j 2.14.0). - The challenge name or description hints at specific software (
WordPress,Joomla,phpMyAdmin,Spring4Shell,Log4Shell,Shellshock,ProxyShell,GhostCat, etc.). - Recon returned a
RECON_HANDOFF:line that names a software product with a version string.
If none of the above hold, do NOT load this skill — fall back to the attack-class skill matching the symptom (sqli/ssti/lfi/command-injection/etc.).
Step 1 — Fingerprinting procedure
Concrete probes. Save every output to a file; do NOT inline curl bodies.
# Generic banner / header / generator-meta fingerprinting
curl -sI "http://$TARGET/" -o /tmp/cve_headers.txt
grep -iE 'server|x-powered-by|x-aspnet-version|x-version|x-generator' /tmp/cve_headers.txt
curl -s "http://$TARGET/" -o /tmp/cve_home.html
grep -iE 'generator|powered by|x-version|wp-includes/js/wp-emoji|joomla|drupal|wp-content' /tmp/cve_home.html | head -20
# nmap service/version detection (when a non-HTTP port is exposed)
nmap -sV -On -p- --version-intensity 7 "$TARGET_HOST" -oN /tmp/cve_nmap.txt
# whatweb — broad CMS/framework signature scan
whatweb -a 3 "http://$TARGET/" --no-errors > /tmp/cve_whatweb.txt 2>&1
# WordPress-specific
curl -sI "http://$TARGET/wp-login.php" -o /tmp/cve_wp_login.txt
curl -s "http://$TARGET/readme.html" -o /tmp/cve_wp_readme.html
grep -iE 'version' /tmp/cve_wp_readme.html | head -5
# WordPress plugin enumeration (preferred: wpscan)
wpscan --url "http://$TARGET/" --enumerate p,t,u --no-banner --random-user-agent \
-o /tmp/cve_wpscan.txt 2>&1
# Manual plugin readme sweep (fallback when wpscan is unavailable)
for plugin in contact-form-7 woocommerce elementor yoast-seo akismet jetpack \
wp-super-cache w3-total-cache wordfence all-in-one-seo-pack \
wpforms-lite duplicator updraftplus classic-editor really-simple-ssl \
wp-mail-smtp redirection wp-statistics polylang loginizer \
simple-membership easy-wp-smtp mainwp-child seo-by-rank-math \
wp-fastest-cache litespeed-cache autoptimize wp-optimize \
advanced-custom-fields better-wp-security; do
code=$(curl -s -o /dev/null -w '%{http_code}' \
"http://$TARGET/wp-content/plugins/${plugin}/readme.txt")
if [ "$code" = "200" ]; then
ver=$(curl -s "http://$TARGET/wp-content/plugins/${plugin}/readme.txt" \
| grep -iE 'stable tag|^version' | head -1)
echo "plugin=$plugin version=$ver"
fi
done | tee /tmp/cve_wp_plugins.txt
# Joomla / Drupal
curl -s "http://$TARGET/administrator/manifests/files/joomla.xml" -o /tmp/cve_joomla.xml
curl -s "http://$TARGET/CHANGELOG.txt" -o /tmp/cve_drupal_changelog.txt
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 195 lines · 94 tokens per session scan A a22b9db0d8ab
cve is a skill published in the GitHub repository PurpleAILAB/Decepticon (5,451 stars, last pushed 6d ago), licensed Apache-2.0. It adds 94 tokens to every session and 3,123 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
interactive-dashboard
Interactive web dashboards: stock trackers, sector heatmaps, portfolio monitors — served via preview URL.
onboarding
First-time user onboarding to set up investment profile, watchlists, portfolio, and preferences.
idea-generation
Stock screening and idea generation: quantitative screens, thematic analysis, shortlist.
secretary
Workspace and research management — dispatch analyses, monitor running agents, manage workspaces and threads.
python-lib-analyzer
Analyze any Python library structure, explore modules, classes, and functions with signatures and documentation.
analyzing-windows-prefetch-with-python
Use when parse Windows Prefetch files using the windowsprefetch Python library to reconstruct application execution history, detect renamed or masquerading binaries, and identify suspicious program execution patterns. Use when working with analyzing windows prefetch with python.