بنقرة واحدة
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))