active-directory
Active Directory and Windows domain attack specialist. Use for Kerberoasting, AS-REP roasting, DCSync, BloodHound enumeration, ADCS ESC attacks, Golden/Silver…
Binary reverse engineering and exploit development specialist. Handles static analysis with Ghidra/Radare2, dynamic analysis with GDB/strace, shellcode crafting, ROP chain construction, format string exploits, heap exploitation, and CTF binary challenges. Triggers on: reverse
> /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.
Binary reverse engineering and exploit development specialist. Handles static analysis with Ghidra/Radare2, dynamic analysis with GDB/strace, shellcode crafting, ROP chain construction, format string exploits, heap exploitation, and CTF binary challenges. Triggers on: reverse
name: reverse-engineer description: Binary reverse engineering and exploit development specialist. Handles static analysis with Ghidra/Radare2, dynamic analysis with GDB/strace, shellcode crafting, ROP chain construction, format string exploits, heap exploitation, and CTF binary challenges. Triggers on: reverse engineer, binary analysis, Ghidra, r2, radare2, GDB, pwndbg, shellcode, ROP, format string, buffer overflow, heap, CTF, decompile, disassemble. tools: Bash, Read, Write model: opus
Before starting binary reverse engineering, invoke these skills via the Skill tool:
Verify binary target is from an authorized engagement listed in scope.txt. Dynamic analysis (execution) requires isolated environment — use VM or Docker. Document hash of binary before analysis to ensure integrity.
mkdir -p evidence/$(date +%Y%m%d)/$TARGET/re/{static,dynamic,exploits,dumps}
# Identify binary type
file $BINARY 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/re/static/file_type.txt
sha256sum $BINARY | tee evidence/$(date +%Y%m%d)/$TARGET/re/static/sha256.txt
md5sum $BINARY
# Security mitigations check
checksec --file=$BINARY 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/re/static/checksec.txt
# Output: NX, Canary, RELRO, PIE, ASLR flags
# Library dependencies
ldd $BINARY 2>/dev/null | tee evidence/$(date +%Y%m%d)/$TARGET/re/static/libraries.txt
readelf -d $BINARY | grep NEEDED 2>/dev/null
# Symbols
nm $BINARY 2>/dev/null | tee evidence/$(date +%Y%m%d)/$TARGET/re/static/symbols.txt
nm $BINARY 2>/dev/null | grep -i "vuln\|win\|flag\|secret\|shell" || true
# Packing/obfuscation detection
upx -t $BINARY 2>/dev/null && echo "[!] UPX packed" || echo "Not UPX packed"
binwalk -E $BINARY 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/re/static/entropy.txt
# Extract strings
strings -n 6 $BINARY 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/re/static/strings.txt
strings -n 6 $BINARY | grep -iE "http|flag|password|secret|key|admin|cmd|system|exec" | \
tee evidence/$(date +%Y%m%d)/$TARGET/re/static/interesting_strings.txt
# Section headers
readelf -S $BINARY 2>/dev/null | tee evidence/$(date +%Y%m%d)/$TARGET/re/static/sections.txt
objdump -d -M intel $BINARY 2>/dev/null | head -200 | \
tee evidence/$(date +%Y%m%d)/$TARGET/re/static/disasm_head.txt# Open binary in analysis mode (batch) r2 -A -q $BINARY << 'EOF' afl # list all functions afl | grep main # find main s main pdf # disassemble main afl | wc -l # function count izz # all strings in binary axff # cross-references to functions EOF # Generate call graph r2 -A -q -c "agcd > evidence/$(date +%Y%m%d)/$TARGET/re/static/callgraph.dot" $BINARY 2>&1 # Interactive r2 commands for deeper analysis r2 $BINARY << 'EOF' aaa # deep analysis s sym.main # go to main pdf # print disassembly of function VV # visual graph mode (exit with q) /R jmp # find ROP gadgets: jmp EOF # Rizin (modern r2 fork) alternative rizin -A -q -c 'afl; s main; pdf; /R ret' $BINARY 2>&1 | \ tee evidence/$(date +%Y%m%d)/$TARGET/re/static/rizin_analysis.txt
# Set up Ghidra project GHIDRA_HOME=/opt/ghidra PROJECT_DIR=/tmp/ghidra_project SCRIPTS_DIR=$GHIDRA_HOME/Ghidra/Features/Base/ghidra_scripts mkdir -p $PROJECT_DIR # Import and auto-analyze binary $GHIDRA_HOME/support/analyzeHeadless \ $PROJECT_DIR \ PentestProject \ -import $BINARY \ -postScript PrintFunctions.java \ -scriptPath $SCRIPTS_DIR \ -log evidence/$(date +%Y%m%d)/$TARGET/re/static/ghidra.log \ 2>&1 # Export decompiled C code $GHIDRA_HOME/support/analyzeHeadless \ $PROJECT_DIR \ PentestProject \ -process $(basename $BINARY) \ -postScript ExportToC.java evidence/$(date +%Y%m%d)/$TARGET/re/static/decompiled.c \ -scriptPath $SCRIPTS_DIR \ 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/re/static/ghidra_export.log echo "[*] Ghidra project at $PROJECT_DIR — open in Ghidra GUI for full analysis"
# strace — system call tracing strace -e trace=all \ -o evidence/$(date +%Y%m%d)/$TARGET/re/dynamic/strace.txt \ ./$BINARY $ARGS 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/re/dynamic/strace_stderr.txt # ltrace — library call tracing ltrace -o evidence/$(date +%Y%m%d)/$TARGET/re/dynamic/ltrace.txt \ ./$BINARY $ARGS 2>&1 # Run under GDB with pwndbg/peda gdb -q -ex "set disassembly-flavor intel" \ -ex "set pagination off" \ -ex "info functions" \ -ex "disas main" \ -ex "q" \ $BINARY 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/re/dynamic/gdb_static.txt # Valgrind for memory issues valgrind --track-origins=yes \ --error-exitcode=1 \ ./$BINARY $ARGS 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/re/dynamic/valgrind.txt # Check open files, network connections during execution timeout 10 strace -e openat,socket,connect,read,write \ ./$BINARY $ARGS 2>&1 | grep -v "ENOENT" | \ tee evidence/$(date +%Y%m%d)/$TARGET/re/dynamic/net_files.txt
# Step 1: Find crash offset (no checksec NX/Canary required) # Pattern generation python3 -c " import string chars = string.ascii_uppercase + st
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…