domain-intel

domain-intel is a skill for Claude Code, Codex from metaspartan/cybara. It costs 0 tokens per session (488 once invoked), scanned A, original, MIT.

A passive way to gather information about a domain’s public infrastructure, including DNS records, TLS certificates, WHOIS registration data, subdomains listed in certificate records, and availability signals. It is not a vulnerability scan.

In plain words
What is it for?
Use it to check DNS, certificate expiry and names, registration details, discovered subdomains, or whether a domain appears available.
Why use it?
It helps answer domain and hosting questions using public records without probing the systems for security weaknesses.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to check DNS, certificate expiry and names, registration details, discovered subdomains, or whether a domain appears available.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/metaspartan/cybara/domain-intel
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add metaspartan/cybara --skill domain-intel
Clone the repo
git clone --depth 1 https://github.com/metaspartan/cybara

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for domain-intel

README.md
[![agentmods](https://agentmods.dev/badge/skills/metaspartan/cybara/domain-intel.svg)](https://agentmods.dev/skills/metaspartan/cybara/domain-intel)
Your own site
<a href="https://agentmods.dev/skills/metaspartan/cybara/domain-intel"><img src="https://agentmods.dev/badge/skills/metaspartan/cybara/domain-intel.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 488 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.00488
Opus 5 $0.00000 $0.00244
Sonnet 5 $0.00000 $0.00098
Haiku 4.5 $0.00000 $0.00049

Measured 7d ago against content hash 15cfc6385083, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

domain-intel scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

import json, sys, urllib.parse, urllib.request
skills/domain-intel/SKILL.md · 71 lines

What it actually says

Domain Intel

Use this for passive infrastructure questions about domains: DNS records, TLS expiry, WHOIS, subdomains from certificate transparency, and registration/availability signals.

This is not a vulnerability scan. Do not port scan or send exploit payloads under this skill.

Quick Checks

DNS:

dig A example.com +short
dig AAAA example.com +short
dig MX example.com +short
dig TXT example.com +short
dig NS example.com +short

TLS certificate:

echo | openssl s_client -servername example.com -connect example.com:443 2>/dev/null \
  | openssl x509 -noout -subject -issuer -dates -ext subjectAltName

WHOIS:

whois example.com | sed -n '1,120p'

Certificate Transparency:

python3 - <<'PY'
import json, sys, urllib.parse, urllib.request
domain = sys.argv[1] if len(sys.argv) > 1 else "example.com"
url = "https://crt.sh/?" + urllib.parse.urlencode({"q": f"%.{domain}", "output": "json"})
with urllib.request.urlopen(url, timeout=20) as res:
    rows = json.load(res)
names = sorted({name.strip().lower() for row in rows for name in row.get("name_value", "").splitlines() if name.strip().endswith(domain)})
for name in names[:200]:
    print(name)
print(f"total={len(names)}", file=sys.stderr)
PY example.com

Output

Report:

  • Domain and exact query time.
  • A/AAAA/MX/NS/TXT summary.
  • TLS issuer, subject, SAN highlights, and expiry.
  • WHOIS registrar and important dates when available.
  • CT-derived subdomains, clearly labeled as historical/passive.
  • Confidence and limitations.

Caveats

  • WHOIS is frequently redacted.
  • CT logs include stale and third-party issued names.
  • DNS answers vary by resolver and geography.
  • Availability checks are heuristics; registrar APIs are authoritative.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 71 lines · 0 tokens per session scan A 15cfc6385083

Subscribe to this mod's changes

domain-intel is a skill published in the GitHub repository metaspartan/cybara (28 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 488 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.