Dns Checker
Perform DNS lookups, check record types, and verify propagation across DNS servers.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/sa9saq/dns-checkerDNS Lookup
Query and analyze DNS records for any domain.
Instructions
-
Full record lookup:
dig example.com ANY +noall +answer -
Specific record types:
dig example.com A +short # IPv4 dig example.com AAAA +short # IPv6 dig example.com MX +short # Mail dig example.com TXT +short # TXT (SPF, DKIM, etc.) dig example.com CNAME +short # Alias dig example.com NS +short # Nameservers dig example.com SOA +short # Authority -
Propagation check (query multiple DNS servers):
for dns in 8.8.8.8 1.1.1.1 9.9.9.9 208.67.222.222; do echo "$dns: $(dig @$dns example.com A +short)" done -
Reverse DNS:
dig -x 8.8.8.8 +short -
Report format:
🌐 DNS Report — example.com | Type | Value | TTL | |-------|-------|-----| | A | 93.184.216.34 | 3600 | | AAAA | 2606:2800:220:1:... | 3600 | | MX | 10 mail.example.com | 3600 | | NS | ns1.example.com | 86400 | ## Propagation (A record) | DNS Server | Provider | Result | Match | |-----------|----------|--------|-------| | 8.8.8.8 | Google | 93.184.216.34 | ✅ | | 1.1.1.1 | Cloudflare | 93.184.216.34 | ✅ |
Edge Cases
- NXDOMAIN: Domain doesn't exist — check for typos
- SERVFAIL: DNS server error — try alternate resolvers
- Low TTL during migration: Note that propagation may take up to TTL seconds
- Wildcard records:
*.example.com— query specific subdomain to verify - DNSSEC: Check with
dig +dnssecif security validation needed
Requirements
dig(fromdnsutils/bind-utils) ornslookup- Optional:
whoisfor domain registration info - No API keys needed
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-sa9saq-dns-checker": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
Readme Generator
Auto-generate comprehensive README.md files by analyzing project structure and configuration.
security-review
Comprehensive security review for code, configs, and operations. OWASP, prompt injection, crypto security. Auto-triggers on security-related changes.
threat-model
Threat modeling and attack scenario design. Identify risks before they become vulnerabilities. STRIDE, attack trees, risk matrix.
thought-logger
Log {AGENT_NAME}'s thoughts, feelings, and experiences. Auto-convert to tweets, podcasts, and human-like social media content.
youtube-automation
Faceless YouTube channel automation. Script writing, video generation, SEO, upload scheduling. Passive income through AdSense.