用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AeonDave/malskill --skill dnsx命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Operate the MCPwn Kali/Debian MCP efficiently: manage sessions, discover catalog tools, choose synchronous, detached, or interactive execution, move files through workspace/CAS planes, establish tunnels and shells, and run GDB or Frida debugging in the MCPwn runtime or through explicit host/device transports. Use for MCPwn or Kali MCP work, pwn/CTF and dynamic-analysis sessions, remote targets, connectivity or file-transfer problems, and optional NeuroMatrix-backed emulation/debugging through MCPwn's emulation domain.
Operate the standalone, client-neutral NeuroMatrix emulation MCP: create isolated sessions, stage CAS artifacts, discover and run Unicorn/Qiling/QEMU/Renode tools, manage jobs and interactive processes, expose guest endpoints, and debug emulated targets with GDB. Use for reverse engineering, user-mode or full-system emulation, firmware/kernel/MCU analysis, guest-service rehosting, runtime-evidence collection, or as the optional emulation provider behind MCPwn or another orchestrator.
Create, implement, scaffold, migrate, or review Model Context Protocol (MCP) servers against modern MCP 2026-07-28. Use for server architecture, tool/resource/prompt contracts, stdio or Streamable HTTP transports, MRTR, optional extensions, authorization, security, and real-transport validation. Also use to isolate legacy initialization or session behavior. Do not use merely to configure an MCP client or invoke an existing server.
基于 SOC 职业分类
正在显示 SKILL.md
| name | dnsx |
| description | Auth/lab ref: Fast DNS resolution and brute-force tool from ProjectDiscovery. |
| license | MIT |
| compatibility | Linux, Windows, macOS. |
| metadata | {"author":"AeonDave","version":"1.1"} |
Fast DNS toolkit — resolve, brute-force, and extract DNS records at scale.
# Resolve a list of subdomains
cat subs.txt | dnsx
# DNS brute-force against a domain
dnsx -d example.com -w wordlist.txt
# Extract A records with response
cat subs.txt | dnsx -a -resp
| Flag | Description |
|---|---|
-l <file> | Input list of hosts/subdomains |
-d <domain> | Target domain (for brute-force) |
-w <wordlist> | Wordlist for brute-force |
-a | Query A records |
-aaaa | Query AAAA records |
-cname | Query CNAME records |
-mx | Query MX records |
-ns | Query NS records |
-txt | Query TXT records |
-ptr | Query PTR records |
-resp | Show DNS response |
-resp-only | Show DNS response only |
-rcode <code> | Filter by rcode (e.g., noerror,nxdomain) |
-r <resolvers> | Custom resolver file |
-rl <n> | Rate limit (requests/second) |
-t <n> | Threads (default 100) |
-timeout <n> | Timeout (default 5s) |
-silent | Print results only |
-o <file> | Output file |
-json | JSON output |
-wildcard | Filter wildcard subdomains |
-cdn | Show CDN name for resolved IPs |
-asn | Show ASN info for resolved IPs |
-recon | Query all record types at once |
-wt <n> | Wildcard threshold (default 5) |
-retry <n> | Retry failed queries |
# Pipeline: subfinder -> dnsx resolution
subfinder -d target.com -silent | dnsx -silent
# DNS brute-force with wordlist
dnsx -d target.com -w /usr/share/dnsrecon/subdomains-top1mil-5000.txt -t 50
# Get all record types in JSON
cat subs.txt | dnsx -a -cname -mx -txt -resp -o dns_records.json -json
# Resolve IPs for a list
cat domains.txt | dnsx -a -resp-only | sort -u
# Filter wildcard results
cat subs.txt | dnsx -wildcard -d target.com -silent
# Reverse DNS (PTR) on IPs
cat ips.txt | dnsx -ptr -resp-only
# Full recon pipeline: subfinder -> dnsx -> httpx
subfinder -d target.com -silent -all | \
dnsx -silent -a -resp-only | \
httpx -silent -status-code -title -tech-detect
# Extract MX/TXT for email security audit
dnsx -d target.com -mx -txt -resp -silent
# Brute-force with custom resolvers (bypass rate limits)
dnsx -d target.com -w subdomains.txt -r resolvers.txt -rl 500
# Wildcard detection + filter
dnsx -d target.com -w wordlist.txt -wildcard -wt 3 -silent
# Extract CNAMEs (find dangling/takeovers)
cat subs.txt | dnsx -cname -resp -silent | grep -v "target.com"
| File | When to load |
|---|---|
references/dns-records.md | DNS record types, brute-force wordlists, wildcard detection, subdomain takeover |