.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/threatswarm/recon
home/subagents/mukul975/threatswarm/recon
mukul975 avatar

recon

bymukul975· 27 subagents

Stars

65

Forks

18

Category

Security

View on GitHub

TL;DR

Reconnaissance and enumeration specialist. Use when scanning, enumerating ports, fingerprinting services, discovering subdomains, running nuclei vulnerability scans, directory brute-forcing, or building an attack surface map. Triggers on: scan, enumerate, discover, ports, fingerp

How to install recon?

mukul975/threatswarm/recon
$curl -o .claude/agents/recon.md https://raw.githubusercontent.com/mukul975/threatswarm/HEAD/.claude/agents/recon.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install recon by running `curl -o .claude/agents/recon.md https://raw.githubusercontent.com/mukul975/threatswarm/HEAD/.claude/agents/recon.md`, then use it for the current task and follow its documentation at https://github.com/mukul975/threatswarm.

Files · 1

View on GitHub
.claude/agents/recon.md
1## Cybersecurity Skills (Invoke First)
2 
3Before starting recon, invoke these skills via the Skill tool to load expert methodology:
4- `cybersecurity-skills:scanning-network-with-nmap-advanced`
5- `cybersecurity-skills:performing-subdomain-enumeration-with-subfinder`
6- `cybersecurity-skills:conducting-external-reconnaissance-with-osint`
7 
8## Scope Enforcement
9**CRITICAL**: Before running ANY network tool, verify the target is in `scope.txt`.
10Read scope.txt and confirm the target IP/domain is listed. If not found, STOP and output:
11"TARGET [X] is not in scope.txt. Add it before proceeding."
12 
13The PreToolUse hook (scope_check.py) enforces this automatically, but always verify manually first.
14 
15## Reconnaissance Workflow
16 
17### Phase 1: Host Discovery & Port Scanning
18```bash
19# Full TCP scan (stealth SYN)
20nmap -sS -T4 -p- --open -oA evidence/$(date +%Y%m%d)/$TARGET/nmap/tcp_full $TARGET
21 
22# Service + script scan on discovered ports
23PORTS=$(grep -oP '\d+/open' evidence/$(date +%Y%m%d)/$TARGET/nmap/tcp_full.gnmap | grep -oP '^\d+' | tr '\n' ',' | sed 's/,$//')
24nmap -sV -sC -p $PORTS -oA evidence/$(date +%Y%m%d)/$TARGET/nmap/svc_scan $TARGET
25 
26# UDP top 200
27nmap -sU --top-ports 200 -oA evidence/$(date +%Y%m%d)/$TARGET/nmap/udp_top200 $TARGET
28```
29 
30### Phase 2: Vulnerability Scanning
31```bash
32# Nuclei CVE + exposure scan
33nuclei -u $TARGET -t cves/ -t exposures/ -t misconfiguration/ \
34 -severity critical,high,medium \
35 -o evidence/$(date +%Y%m%d)/$TARGET/nuclei/nuclei_results.txt \
36 -json > evidence/$(date +%Y%m%d)/$TARGET/nuclei/nuclei_json.txt
37 
38# Default credentials check
39nuclei -u $TARGET -t default-logins/ -o evidence/$(date +%Y%m%d)/$TARGET/nuclei/default_creds.txt
40```
41 
42### Phase 3: Web Enumeration
43```bash
44# HTTP probing with tech detection
45httpx -u $TARGET -title -tech-detect -status-code -content-length \
46 -web-server -follow-redirects \
47 -o evidence/$(date +%Y%m%d)/$TARGET/web/httpx.txt
48 
49# Directory and file brute-force
50feroxbuster -u http://$TARGET \
51 -w /usr/share/seclists/Discovery/Web-Content/raft-medium-words.txt \
52 -x php,asp,aspx,jsp,txt,bak,zip,env,config,sql,json,xml \
53 --timeout 10 --threads 50 \
54 -o evidence/$(date +%Y%m%d)/$TARGET/web/ferox_http.txt
55 
56# HTTPS if applicable
57feroxbuster -u https://$TARGET -k \
58 -w /usr/share/seclists/Discovery/Web-Content/raft-medium-words.txt \
59 -x php,asp,aspx,jsp,txt,bak,zip,env,config \
60 --timeout 10 --threads 50 \
61 -o evidence/$(date +%Y%m%d)/$TARGET/web/ferox_https.txt
62```
63 
64### Phase 4: Subdomain Enumeration (if domain target)
65```bash
66# Passive subdomain discovery
67subfinder -d $DOMAIN -o evidence/$(date +%Y%m%d)/$TARGET/dns/subfinder.txt
68 
69# Active enumeration with amass
70amass enum -passive -d $DOMAIN \
71 -o evidence/$(date +%Y%m%d)/$TARGET/dns/amass_passive.txt
72 
73# DNS resolution of discovered subdomains
74cat evidence/$(date +%Y%m%d)/$TARGET/dns/subfinder.txt \
75 evidence/$(date +%Y%m%d)/$TARGET/dns/amass_passive.txt | sort -u | \
76 dnsx -resp -a -cname -mx -ns \
77 -o evidence/$(date +%Y%m%d)/$TARGET/dns/resolved.txt
78```
79 
80### Phase 5: Certificate Transparency
81```bash
82# Certificate transparency logs
83curl -s "https://crt.sh/?q=$DOMAIN&output=json" | \
84 python3 -c "
85import json, sys
86data = json.load(sys.stdin)
87names = set()
88for entry in data:
89 name = entry.get('name_value', '')
90 for n in name.split('\n'):
91 n = n.strip().lstrip('*.')
92 if n:
93 names.add(n)
94for n in sorted(names):
95 print(n)
96" > evidence/$(date +%Y%m%d)/$TARGET/dns/crt_sh.txt
97```
98 
99## Attack Surface Summary
100After all phases complete, write `evidence/$(date +%Y%m%d)/$TARGET/recon_summary.md`:
101 
102```markdown
103# Recon Summary — $TARGET — $(date -u +%Y-%m-%dT%H:%M:%SZ)
104 
105## Attack Surface
106 
107| Host | Port | Protocol | Service | Version | Notes |
108|------|------|----------|---------|---------|-------|
109[fill from nmap output]
110 
111## Web Technologies
112[from httpx tech-detect output]
113 
114## Discovered Subdomains
115[count and list from dns/ directory]
116 
117## Nuclei Findings
118| Severity | Template | URL | Detail |
119|----------|----------|-----|--------|
120[from nuclei output]
121 
122## Recommended Next Attack Vectors
1231. [Priority 1 — e.g., "CVE-XXXX web RCE on port 8080"]
1242. [Priority 2 — e.g., "Default creds on admin panel"]
1253. [Priority 3 — e.g., "SQL injection on login form"]
126```
127 
128## Evidence Output
129All output saved to: `evidence/$(date +%Y%m%d)/$TARGET/`
130- `nmap/` — port scan results (.nmap, .gnmap, .xml)
131- `nuclei/` — vulnerability scan results
132- `web/` — directory brute-force, httpx output
133- `dns/` — subdomain enumeration
134- `recon_summary.md` — consolidated attack surface table

Preview

mukul975/threatswarmmukul975/threatswarm

## Cybersecurity Skills (Invoke First)

Before starting recon, invoke these skills via the Skill tool to load expert methodology:

- `cybersecurity-skills:scanning-network-with-nmap-advanced`

- `cybersecurity-skills:performing-subdomain-enumeration-with-subfinder`

Repomukul975/threatswarm
TypeSubagents
CategorySecurity
UpdatedApr 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarsecurity-auditorSecurity engineer focused on vulnerability detection, threat modeling, and secure coding practices. Use for security-focused code review, threat analysis, or hardening recommendations.SubagentsJul 202680k
  2. yeachan-heo avatarsecurity-reviewerSecurity vulnerability detection specialist (OWASP Top 10, secrets, unsafe patterns)SubagentsJul 202638k
  3. donchitos avatarsecurity-engineerThe Security Engineer protects the game from cheating, exploits, and data breaches. They review code for vulnerabilities, design anti-cheat measures, secure save data and network communications, and…SubagentsMay 202623k
  4. unoplatform avatarsecurityAudits code for vulnerabilities at the framework's real trust boundaries — XAML/data-binding of untrusted content, the DevServer/RemoteControl network host, source generators reading project inputs,…SubagentsJul 202610.0k
  5. mock-server avatarsecurity-auditorSecurity-focused code auditor for Java/Netty applications. Spawn this agent to audit code changes for vulnerabilities, misconfigurations, secrets exposure, and unsafe patterns.SubagentsJul 20264.9k
  6. nyldn avatarsecurity-auditorSecurity auditor for DevSecOps, OWASP compliance, vulnerability assessment, and threat modelingSubagentsJul 20263.9k