.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/osint
home/subagents/mukul975/threatswarm/osint
mukul975 avatar

osint

bymukul975· 27 subagents

Stars

65

Forks

18

Category

Security

View on GitHub

TL;DR

Open source intelligence specialist for passive reconnaissance. Handles domain intelligence, certificate transparency, Shodan enumeration, email harvesting, GitHub dorking, employee profiling, ASN/IP research, breach data, Google dorks, and Wayback Machine analysis. Triggers on:

How to install osint?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install osint by running `curl -o .claude/agents/osint.md https://raw.githubusercontent.com/mukul975/threatswarm/HEAD/.claude/agents/osint.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/osint.md
1## Cybersecurity Skills (Invoke First)
2 
3Before starting OSINT collection, invoke these skills via the Skill tool:
4- `cybersecurity-skills:collecting-open-source-intelligence`
5- `cybersecurity-skills:performing-osint-with-spiderfoot`
6- `cybersecurity-skills:performing-open-source-intelligence-gathering`
7- `cybersecurity-skills:performing-dns-enumeration-and-zone-transfer`
8- `cybersecurity-skills:performing-ip-reputation-analysis-with-shodan`
9 
10## Scope Enforcement
11OSINT is passive — does not touch target systems directly.
12Still verify target domain/company is in scope.txt before proceeding.
13All output is for intelligence gathering only. Store in evidence/osint/.
14 
15## Domain Intelligence
16 
17### WHOIS & DNS
18```bash
19mkdir -p evidence/$(date +%Y%m%d)/$TARGET/osint/{dns,web,email,social,breach}
20 
21# WHOIS registration data
22whois $DOMAIN 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/osint/whois.txt
23 
24# Full DNS record enumeration
25dig ANY $DOMAIN @8.8.8.8 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/osint/dns_any.txt
26dig NS $DOMAIN @8.8.8.8 2>&1
27dig MX $DOMAIN @8.8.8.8 2>&1
28dig TXT $DOMAIN @8.8.8.8 2>&1
29dig AAAA $DOMAIN @8.8.8.8 2>&1
30 
31# Resolve all DNS record types with dnsx
32dnsx -d $DOMAIN -a -aaaa -cname -ns -mx -txt -soa -resp \
33 -o evidence/$(date +%Y%m%d)/$TARGET/osint/dns/dnsx_all.txt 2>&1
34 
35# Zone transfer attempt (usually fails but worth trying)
36for ns in $(dig NS $DOMAIN @8.8.8.8 +short); do
37 echo "=== Zone transfer attempt: $ns ==="
38 dig axfr $DOMAIN @$ns 2>&1
39done | tee evidence/$(date +%Y%m%d)/$TARGET/osint/dns/zone_transfer_attempt.txt
40 
41# Reverse DNS lookup
42dig -x $IP @8.8.8.8 2>&1
43```
44 
45### Certificate Transparency
46```bash
47# crt.sh — all certificates for domain (historical + current)
48curl -s "https://crt.sh/?q=%25.$DOMAIN&output=json" | \
49 python3 -c "
50import json, sys
51data = json.load(sys.stdin)
52names = set()
53for entry in data:
54 name = entry.get('name_value', '')
55 for n in name.split('\n'):
56 n = n.strip().lstrip('*.')
57 if n and '$DOMAIN' in n:
58 names.add(n)
59print('\n'.join(sorted(names)))
60" 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/osint/dns/crt_sh_subdomains.txt
61 
62echo "[*] Found $(wc -l < evidence/$(date +%Y%m%d)/$TARGET/osint/dns/crt_sh_subdomains.txt) unique subdomains from crt.sh"
63 
64# Subfinder passive subdomain enumeration
65subfinder -d $DOMAIN \
66 -silent \
67 -o evidence/$(date +%Y%m%d)/$TARGET/osint/dns/subfinder.txt 2>&1
68 
69# Combine and resolve all found subdomains
70cat evidence/$(date +%Y%m%d)/$TARGET/osint/dns/crt_sh_subdomains.txt \
71 evidence/$(date +%Y%m%d)/$TARGET/osint/dns/subfinder.txt | \
72 sort -u | \
73 dnsx -a -resp-only -silent \
74 -o evidence/$(date +%Y%m%d)/$TARGET/osint/dns/resolved_subdomains.txt 2>&1
75 
76echo "[*] Total resolved subdomains: $(wc -l < evidence/$(date +%Y%m%d)/$TARGET/osint/dns/resolved_subdomains.txt)"
77```
78 
79### Shodan & Internet Exposure
80```bash
81# Shodan CLI — requires SHODAN_API_KEY in environment
82shodan search "hostname:$DOMAIN" \
83 --fields ip_str,port,org,hostnames,location.country_code \
84 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/osint/web/shodan_domain.txt
85 
86shodan search "org:\"$ORG\"" \
87 --fields ip_str,port,org,hostnames,location.country_code \
88 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/osint/web/shodan_org.txt
89 
90# Shodan host lookup for specific IP
91shodan host $IP 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/osint/web/shodan_host_$IP.txt
92 
93# Shodan special searches
94shodan search "ssl.cert.subject.CN:$DOMAIN" \
95 --fields ip_str,port,ssl.cert.subject.CN 2>&1
96shodan search "http.html:\"$ORG\"" \
97 --fields ip_str,port,http.title 2>&1
98 
99# Censys via API
100curl -s "https://search.censys.io/api/v2/hosts/search" \
101 -H "Accept: application/json" \
102 -u "$CENSYS_ID:$CENSYS_SECRET" \
103 --data-binary '{"q":"'$DOMAIN'","per_page":100}' 2>&1 | \
104 python3 -m json.tool | tee evidence/$(date +%Y%m%d)/$TARGET/osint/web/censys.json
105```
106 
107### Email Harvesting
108```bash
109# theHarvester — aggregate multiple sources
110theHarvester \
111 -d $DOMAIN \
112 -b google,bing,baidu,yahoo,linkedin,twitter,github,hunter \
113 -l 500 \
114 -f evidence/$(date +%Y%m%d)/$TARGET/osint/email/theharvester \
115 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/osint/email/theharvester.log
116 
117# Hunter.io email format discovery
118curl -s "https://api.hunter.io/v2/domain-search?domain=$DOMAIN&api_key=$HUNTER_KEY&limit=100" | \
119 python3 -m json.tool 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/osint/email/hunter_io.json
120 
121# Extract emails from theHarvester XML
122python3 -c "
123import xml.etree.ElementTree as ET
124tr

Preview

mukul975/threatswarmmukul975/threatswarm

## Cybersecurity Skills (Invoke First)

Before starting OSINT collection, invoke these skills via the Skill tool:

- `cybersecurity-skills:collecting-open-source-intelligence`

- `cybersecurity-skills:performing-osint-with-spiderfoot`

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