| name | domain-intel |
| description | Use when the user asks about passive reconnaissance, subdomain discovery via Certificate Transparency logs, SSL/TLS certificate inspection (expiry, cipher, SANs), WHOIS lookups (registrar, dates, name servers), DNS record resolution (A, AAAA, MX, NS, TXT, CNAME), domain availability checks, or bulk domain intelligence gathering across multiple domains. Zero dependencies, pure Python stdlib. |
| license | MIT |
| metadata | {"author":"@FurkanL0; hakase ported via Hermes Agent (MIT)","version":"1.0.0","source":"https://github.com/NousResearch/hermes-agent/tree/main/optional-skills/research/domain-intel"} |
| allowed-tools | read_file, write_file, patch, search_files, system_exec, python_interpreter, load_markdown_skill, delegate_task |
Domain Intelligence - Passive OSINT
Passive domain reconnaissance using only Python stdlib.
Zero dependencies. Zero API keys. Works on Linux, macOS, and Windows.
Helper script
This skill includes scripts/domain_intel.py - a complete CLI tool for all domain intelligence operations.
python3 SKILL_DIR/scripts/domain_intel.py subdomains example.com
python3 SKILL_DIR/scripts/domain_intel.py ssl example.com
python3 SKILL_DIR/scripts/domain_intel.py whois example.com
python3 SKILL_DIR/scripts/domain_intel.py dns example.com
python3 SKILL_DIR/scripts/domain_intel.py available coolstartup.io
python3 SKILL_DIR/scripts/domain_intel.py bulk example.com github.com google.com
python3 SKILL_DIR/scripts/domain_intel.py bulk example.com github.com --checks ssl,dns
SKILL_DIR is the directory containing this SKILL.md file. All output is structured JSON.
Available commands
| Command | What it does | Data source |
|---|
subdomains | Find subdomains from certificate logs | crt.sh (HTTPS) |
ssl | Inspect TLS certificate details | Direct TCP:443 to target |
whois | Registration info, registrar, dates | WHOIS servers (TCP:43) |
dns | A, AAAA, MX, NS, TXT, CNAME records | System DNS + Google DoH |
available | Check if domain is registered | DNS + WHOIS + SSL signals |
bulk | Run multiple checks on multiple domains | All of the above |
When to use this vs built-in tools
- Use this skill for infrastructure questions: subdomains, SSL certs, WHOIS, DNS records, availability
- Use
delegate_task to web_researcher for general research about what a domain/company does
- Use
delegate_task to web_researcher to get the actual content of a webpage
- Use
system_exec with curl -I for a simple "is this URL reachable" check
| Task | Better tool | Why |
|---|
| "What does example.com do?" | delegate_task web_researcher | Gets page content, not DNS/WHOIS data |
| "Find info about a company" | delegate_task web_researcher | General research, not domain-specific |
| "Is this website safe?" | delegate_task web_researcher | Reputation checks need web context |
| "Check if a URL is reachable" | system_exec with curl -I | Simple HTTP check |
| "Find subdomains of X" | This skill | Only passive source for this |
| "When does the SSL cert expire?" | This skill | Built-in tools can't inspect TLS |
| "Who registered this domain?" | This skill | WHOIS data not in web search |
| "Is coolstartup.io available?" | This skill | Passive availability via DNS+WHOIS+SSL |
Platform compatibility
Pure Python stdlib (socket, ssl, urllib, json, concurrent.futures).
Works identically on Linux, macOS, and Windows with no dependencies.
- crt.sh queries use HTTPS (port 443) - works behind most firewalls
- WHOIS queries use TCP port 43 - may be blocked on restrictive networks
- DNS queries use Google DoH (HTTPS) for MX/NS/TXT - firewall-friendly
- SSL checks connect to the target on port 443 - the only "active" operation
Data sources
All queries are passive - no port scanning, no vulnerability testing:
- crt.sh - Certificate Transparency logs (subdomain discovery, HTTPS only)
- WHOIS servers - Direct TCP to 100+ authoritative TLD registrars
- Google DNS-over-HTTPS - MX, NS, TXT, CNAME resolution (firewall-friendly)
- System DNS - A/AAAA record resolution
- SSL check is the only "active" operation (TCP connection to target:443)
Notes
- WHOIS queries use TCP port 43 - may be blocked on restrictive networks
- Some WHOIS servers redact registrant info (GDPR) - mention this to the user
- crt.sh can be slow for very popular domains (thousands of certs) - set reasonable expectations
- The availability check is heuristic-based (3 passive signals) - not authoritative like a registrar API
Ported to hakase from Hermes Agent (MIT).
Original: domain-intel by @FurkanL0 (MIT).