一键导入
osint-recon
OSINT reconnaissance tools for the CodeAgent — domain, IP, email, and social media intelligence
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
OSINT reconnaissance tools for the CodeAgent — domain, IP, email, and social media intelligence
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Penetration testing tools for the CodeAgent — network scanning, service enumeration, and vulnerability checks
Obsidian Local REST API tools for the CodeAgent — manage vault notes, search, and metadata
Frida dynamic instrumentation tools for the CodeAgent — mobile app analysis and SSL unpinning
DuckDB in-process analytics tools for the CodeAgent — SQL on CSV/Parquet/JSON without a server
Supabase client tools for the CodeAgent — database CRUD, auth, storage, and edge functions
Use BEFORE any creative work — creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements, and design before implementation.
| name | osint-recon |
| description | OSINT reconnaissance tools for the CodeAgent — domain, IP, email, and social media intelligence |
This skill extends the CodeAgent with Open Source Intelligence (OSINT) functions. Uses public APIs and the Agentic Fetch service for web-based lookups. No API keys required for basic functionality.
Inspired by awesome-osint.
osint_whois(domain) — WHOIS lookup for domain registration infoosint_dns(domain, record_type="A") — DNS record lookuposint_headers(url) — HTTP headers analysis for technology fingerprintingosint_email_validate(email) — basic email format + MX validationosint_subdomain_enum(domain) — subdomain enumeration via crt.shosint_ip_info(ip) — IP geolocation and ASN infoosint_social_check(username) — check username across platformsosint_dorking(query, site=None) — Google dorking helper# Full recon on a domain
domain = "example.com"
print("=== WHOIS ===")
print(osint_whois(domain))
print("=== DNS ===")
print(osint_dns(domain, "A"))
print(osint_dns(domain, "MX"))
print("=== Subdomains ===")
print(osint_subdomain_enum(domain))