Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

rapiddnsrapiddns 搜索

Agent Skill

rapiddns 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,927

周安装

162

GitHub Stars

公开资料未说明

下载量

1,283
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:rapiddns(rapiddns 搜索)
来源仓库:https://github.com/rapiddns/rapiddns
安装命令:
openclaw skills install rapiddns
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install rapiddns

简介

使用 RapidDNS API 进行 DNS 侦察与子域枚举。

  • 支持反向 IP 查找与 CIDR 范围扫描。
  • 适合在 OpenClaw 中需要域名资产发现时使用。
  • 安装前建议确认权限范围、维护状态及是否触发联网请求。
  • 涉及第三方域名时应遵守爬虫政策与速率限制。rapiddns 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
rapiddns
description
>

rapiddns — DNS Reconnaissance via RapidDNS

Installation

rapiddns-cli is cross-platform. Install via pre-built binary (recommended) or Go.

Option 1: Pre-built Binary (Recommended)

Download from GitHub Releases:

PlatformFile
macOS (Intel)rapiddns_*_darwin_amd64.tar.gz
macOS (Apple Silicon)rapiddns_*_darwin_arm64.tar.gz
Linux (x86_64)rapiddns_*_linux_amd64.tar.gz
Linux (ARM64)rapiddns_*_linux_arm64.tar.gz
Windows (x86_64)rapiddns_*_windows_amd64.zip
# Linux/macOS example
VERSION="1.0.2"
OS="linux"       # or "darwin" for macOS
ARCH="amd64"     # or "arm64"
curl -sL "https://github.com/rapiddns/rapiddns-cli/releases/download/v${VERSION}/rapiddns_v${VERSION}_${OS}_${ARCH}.tar.gz" | tar xz
sudo mv rapiddns /usr/local/bin/
rapiddns-cli --help

Option 2: Go Install

Requires Go 1.24+:

go install github.com/rapiddns/rapiddns-cli@latest

Binary is placed in $GOPATH/bin (usually ~/go/bin). Add to PATH:

echo 'export PATH=$PATH:$(go env GOPATH)/bin' >> ~/.bashrc  # Linux
# or ~/.zshrc on macOS

API Key Configuration

Full features (export, unlimited search) require an API key from https://rapiddns.io/user/profile

rapiddns-cli config set-key <API_KEY>
rapiddns-cli config get-key   # verify

Without a key, search results are limited and export is disabled.

Common Workflows

Subdomain Search

# Basic — all records for a domain
rapiddns-cli search example.com

# Force search type (when auto-detect fails)
rapiddns-cli search 1.2.3.4 --type ip

# Auto-paginate up to 5000 records
rapiddns-cli search example.com --max 5000

Extract Subdomains / IPs

# Subdomains only (deduplicated text list)
rapiddns-cli search example.com --extract-subdomains

# IPs only + subnet statistics
rapiddns-cli search example.com --extract-ips

# Both
rapiddns-cli search example.com --extract-subdomains --extract-ips

Reverse IP & CIDR

# Reverse IP — what domains point to this IP?
rapiddns-cli search 1.2.3.4

# CIDR range — enumerate an entire subnet
rapiddns-cli search 129.134.0.0/16 --max 10000

Advanced Query

Use Elasticsearch-style syntax for complex queries:

# All A records for apple.com subdomains (domain = 2nd-level only!)
rapiddns-cli search "domain:apple AND type:A" --type advanced

# Specific subdomain pattern
rapiddns-cli search "subdomain:admin.* AND tld:com" --type advanced

# MX records for a domain
rapiddns-cli search "type:MX AND domain:baidu" --type advanced

# Exact subdomain lookup
rapiddns-cli search 'subdomain:"mail.google.com"' --type advanced

Export (Requires API Key)

Automated workflow: trigger → poll → download → extract:

# Full export with subdomain + IP extraction
rapiddns-cli export start example.com --max 100000 --extract-subdomains --extract-ips

# Advanced query export
rapiddns-cli export start "domain:example AND type:A" --type advanced

Results saved to result/ directory.

Output Formats & Piping

# JSON (default)
rapiddns-cli search example.com -o json

# CSV
rapiddns-cli search example.com -o csv -f results.csv

# Text — pipe-friendly (stdout = clean data, stderr = status)
rapiddns-cli search example.com --column subdomain -o text | sort -u > subdomains.txt

# Silent mode — extract to files only, no console output
rapiddns-cli search example.com --extract-subdomains --silent

Field Reference

FieldDescription
subdomainThe subdomain (e.g. www.example.com)
typeDNS record type (A, AAAA, CNAME, MX, NS, TXT, etc.)
valueRecord value (IP, target, etc.)
timestampLast observation timestamp
dateDate of last observation

Advanced Query Syntax

OperatorExample
Domain (2nd-level only)domain:apple ⚠️ NOT domain:apple.com
Type filtertype:A, type:MX, type:CNAME
TLD filtertld:com, tld:cn
Subdomain matchsubdomain:apple.com* (trailing wildcard)
Exact subdomainsubdomain:"a.ns.example.com"
Value/IPvalue:"1.1.1.1"
Booleandomain:apple AND type:A
Negationdomain:apple AND NOT subdomain:www.*

Available fields: domain, tld, subdomain, value, type, is_root

⚠️ domain 字段是二级域名(不含 TLD):用 domain:baidu,不要用 domain:baidu.com

Important: Date Accuracy

  • Use -o text for displaying results with dates — includes subdomain, type, value, date.
  • Use --column subdomain -o text for pure subdomain lists (pipe to other tools).
  • JSON output (-o json) also includes dates but needs parsing; prefer -o text for display.
  • Dates come directly from the API and match the rapiddns.io website exactly.

Response Language

  • Match the user's language. If they ask in Chinese, respond in Chinese. If English, respond in English.
  • CLI output (tables, lists) stays as-is (machine output). Summaries and explanations follow the user's language.

Display results

# Tab-separated table with dates (sorted newest first by default)
rapiddns-cli search <target> --max 5000 -o text 2>/dev/null

# Pure subdomain list for piping
rapiddns-cli search <target> --max 5000 --column subdomain -o text 2>/dev/null | sort -u

Tips

  • Use --silent when piping or saving to file to suppress console output
  • Note: --silent with --extract-subdomains still prints the extracted file path to stdout (CLI behavior)
  • --max auto-paginates — no need to manually loop pages
  • Without API key: search works but limited results; export disabled
  • For large-scale recon, combine --extract-subdomains with other tools via pipe

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

85.7%
按下载量换算1,100

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills