一键导入
osint-recon
Open-source intelligence gathering — CVE lookup, breach search, DNS history, social profiling
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Open-source intelligence gathering — CVE lookup, breach search, DNS history, social profiling
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Business logic vulnerability detection — workflow bypass, price manipulation, state abuse, and application-specific flaws
Detect PII, credentials, and corporate sensitive data in API responses, source code, files, headers, and database extracts
Detect and exploit SQL injection vulnerabilities in web application parameters
Test for authentication and authorization flaws including credential attacks, session issues, and access control bypasses
Detect and exploit cross-site scripting vulnerabilities in web applications
Discover hidden parameters, test values, and identify input handling anomalies
| name | osint-recon |
| description | Open-source intelligence gathering — CVE lookup, breach search, DNS history, social profiling |
| origin | RedteamOpencode |
searchsploit, h8mail, theHarvester, spiderfoot, amass, whois, dig, waybackurls, curl, jq
From intel.md Technology Stack — for each component+version:
# Exploit-DB local search
searchsploit "<component> <version>"
searchsploit -j "<component> <version>" | jq '.RESULTS_EXPLOIT[]'
# NVD API (rate limit: 5 req/30s without API key)
curl -s "https://services.nvd.nist.gov/rest/json/cves/2.0?keywordSearch=<component>+<version>&resultsPerPage=10" \
| jq '.vulnerabilities[].cve | {id, descriptions: .descriptions[0].value, metrics: .metrics}'
# GitHub Advisory Database
curl -s "https://api.github.com/advisories?affects=<component>&per_page=10" \
| jq '.[].ghsa_id, .[].summary'
# GitHub PoC search
curl -s "https://api.github.com/search/repositories?q=CVE+<component>+poc&sort=updated&per_page=5" \
| jq '.items[] | {name, html_url, description}'
From intel.md Email Addresses and Domains:
# theHarvester — email and subdomain enumeration
theHarvester -d <domain> -b all -f scans/osint_harvester.json
# h8mail — breach lookup for discovered emails
h8mail -t <email1>,<email2> -o scans/osint_h8mail.csv
# HIBP API (requires API key in env)
curl -s -H "hibp-api-key: $HIBP_API_KEY" \
"https://haveibeenpwned.com/api/v3/breachedaccount/<email>?truncateResponse=false" | jq '.'
# Paste search
curl -s -H "hibp-api-key: $HIBP_API_KEY" \
"https://haveibeenpwned.com/api/v3/pasteaccount/<email>" | jq '.'
From intel.md Domains & Infrastructure:
# WHOIS
whois <domain> | tee scans/osint_whois.txt
# Certificate transparency
curl -s "https://crt.sh/?q=%25.<domain>&output=json" \
| jq '.[0:20] | .[] | {name_value, issuer_name, not_before, not_after}'
# DNS records
for type in A AAAA MX NS TXT SOA CNAME; do
dig +short $type <domain>
done | tee scans/osint_dns.txt
# Amass passive enum
amass enum -passive -d <domain> -o scans/osint_amass.txt
# Wayback Machine — historical URLs
curl -s "https://web.archive.org/cdx/search/cdx?url=<domain>/*&output=json&fl=original,timestamp,statuscode&collapse=urlkey&limit=200" \
| jq '.[1:][] | {url: .[0], date: .[1], status: .[2]}'
# SecurityTrails API (requires API key in env)
curl -s -H "APIKEY: $SECURITYTRAILS_API_KEY" \
"https://api.securitytrails.com/v1/domain/<domain>/subdomains" | jq '.subdomains[]'
# Historical DNS
curl -s -H "APIKEY: $SECURITYTRAILS_API_KEY" \
"https://api.securitytrails.com/v1/history/<domain>/dns/a" | jq '.records[]'
From intel.md People & Organizations:
# theHarvester — people and email enumeration
theHarvester -d <domain> -b linkedin,google -f scans/osint_social.json
# SpiderFoot CLI scan
spiderfoot -s <domain> -m sfp_dnsresolve,sfp_whois,sfp_social,sfp_email \
-o scans/osint_spiderfoot.json
# GitHub user/org search
curl -s "https://api.github.com/search/users?q=<person>+<org>" \
| jq '.items[] | {login, html_url, type}'
# GitHub org repos (potential source code leaks)
curl -s "https://api.github.com/orgs/<org>/repos?per_page=30&sort=updated" \
| jq '.[] | {name, html_url, description, visibility}'
# Hunter.io — email pattern discovery (requires API key)
curl -s "https://api.hunter.io/v2/domain-search?domain=<domain>&api_key=$HUNTER_API_KEY" \
| jq '.data.emails[] | {value, type, confidence}'
ALL output goes to intel.md ONLY. osint-analyst does NOT write to findings.md.