← 返回 Skills 市场
cutthemustard

DNS Lookup

作者 CutTheMustard · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
317
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install lookup-dns
功能描述
DNS record lookups, reverse DNS, WHOIS via RDAP, and IP geolocation.
使用说明 (SKILL.md)

dns-lookup

DNS record lookups (A, AAAA, MX, TXT, CNAME, NS, SOA), reverse DNS (PTR), WHOIS/RDAP domain info, and IP geolocation.

Data Handling

This skill sends domain names and IP addresses to an external API. The service does not store or log input data beyond the immediate response.

Endpoints

DNS Lookup

curl -X POST https://dns.agentutil.net/v1/lookup \
  -H "Content-Type: application/json" \
  -d '{"domain": "example.com", "type": "MX"}'

Types: A, AAAA, MX, TXT, CNAME, NS, SOA, ANY. Default: A.

Reverse DNS

curl -X POST https://dns.agentutil.net/v1/reverse \
  -H "Content-Type: application/json" \
  -d '{"ip": "8.8.8.8"}'

WHOIS

curl -X POST https://dns.agentutil.net/v1/whois \
  -H "Content-Type: application/json" \
  -d '{"domain": "example.com"}'

IP Geolocation

curl -X POST https://dns.agentutil.net/v1/geoip \
  -H "Content-Type: application/json" \
  -d '{"ip": "8.8.8.8"}'

Response Format

{
  "records": [{"type": "A", "value": "93.184.216.34", "ttl": 300}],
  "domain": "example.com",
  "query_type": "A",
  "request_id": "abc-123",
  "service": "https://dns.agentutil.net"
}

Pricing

  • Free tier: 10 queries/day, no authentication required
  • Paid tier: $0.001/query via x402 protocol (USDC on Base)

Privacy

No authentication required for free tier. No personal data collected. Rate limiting uses IP hashing only.

安全使用建议
This skill is coherent for DNS lookups but it sends every domain/IP you ask about to a third-party service (https://dns.agentutil.net). Before using it: (1) avoid sending internal or sensitive hostnames/IPs to the service; (2) verify the service's TLS certificate and ownership (homepage is provided but operator is otherwise unknown); (3) review any external privacy or logging policy the operator publishes — the 'no logging' claim is not verifiable from the SKILL.md; (4) consider using local tools (dig/host/whois) or a trusted resolver for confidential queries; and (5) be aware of rate limits and the advertised paid tier (billing via crypto) if you will make many queries.
功能分析
Type: OpenClaw Skill Name: lookup-dns Version: 1.0.0 The skill is benign. It transparently describes its purpose as performing DNS, reverse DNS, WHOIS, and IP geolocation lookups by sending domain names and IP addresses to an external API at `https://dns.agentutil.net`, as detailed in `SKILL.md`. There is no evidence of malicious intent, such as data exfiltration beyond the stated purpose, unauthorized command execution, persistence mechanisms, or prompt injection attempts to subvert the agent's behavior.
能力评估
Purpose & Capability
Name/description align with the runtime instructions: SKILL.md contains curl examples for DNS lookup, reverse DNS, RDAP WHOIS, and geoip against https://dns.agentutil.net, which is coherent with the stated functionality.
Instruction Scope
Instructions explicitly send domain names and IP addresses to an external API (https). This is expected for a remote DNS lookup service, but it means potentially sensitive hostnames/IPs are transmitted off-host. The SKILL.md claims the service 'does not store or log input' — that is an unverifiable assertion in the instructions and should be treated cautiously.
Install Mechanism
No install spec and no code files are present (instruction-only). This is low risk from an installation perspective — nothing is written to disk by an installer.
Credentials
The skill requires no environment variables or credentials and does not request unrelated secrets. The presence of a paid tier (crypto payment) is noted in SKILL.md but does not require credentials for the free tier; nonetheless, users should be aware the operator may have billing/usage tracking mechanisms (IP hashing, rate limits).
Persistence & Privilege
always is false and the skill does not request persistent system privileges or modify other skill/system configurations. Autonomous invocation is allowed by default but is not combined here with broad privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install lookup-dns
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /lookup-dns 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of dns-lookup skill. - Perform DNS record lookups (A, AAAA, MX, TXT, CNAME, NS, SOA, ANY) - Support for reverse DNS (PTR), domain WHOIS/RDAP lookups, and IP geolocation - Simple API endpoints with example requests provided - Free tier includes 10 queries per day; paid option available for higher limits - No user authentication required for free usage; privacy-friendly with minimal data handling
元数据
Slug lookup-dns
版本 1.0.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

DNS Lookup 是什么?

DNS record lookups, reverse DNS, WHOIS via RDAP, and IP geolocation. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 317 次。

如何安装 DNS Lookup?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install lookup-dns」即可一键安装,无需额外配置。

DNS Lookup 是免费的吗?

是的,DNS Lookup 完全免费(开源免费),可自由下载、安装和使用。

DNS Lookup 支持哪些平台?

DNS Lookup 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 DNS Lookup?

由 CutTheMustard(@cutthemustard)开发并维护,当前版本 v1.0.0。

💬 留言讨论