一键导入
subdomain-enum
Subdomain and DNS enumeration workflow using subfinder, amass, dnsenum, fierce, theharvester, gau, and waybackurls
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Subdomain and DNS enumeration workflow using subfinder, amass, dnsenum, fierce, theharvester, gau, and waybackurls
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Binary analysis and reverse engineering workflow using checksec, strings, binwalk, radare2, ropgadget, and gdb for CTF and vulnerability research
Cloud and container security auditing workflow using prowler, trivy, kube-hunter, and docker-bench for AWS, GCP, Azure, Kubernetes, and container images
Exploitation workflow using Metasploit, msfvenom payload generation, and Exploit-DB search — from vulnerability identification to shell
Network reconnaissance workflow using nmap, masscan, and rustscan via NyxStrike tools
Password hash identification, cracking, and credential brute-forcing using hashid, john, hashcat, hydra, medusa, and ophcrack
SMB and Windows network enumeration workflow using nmap, smbmap, enum4linux, netexec, and nbtscan for share discovery, user enumeration, and lateral movement
| name | subdomain-enum |
| description | Subdomain and DNS enumeration workflow using subfinder, amass, dnsenum, fierce, theharvester, gau, and waybackurls |
Subdomain and DNS reconnaissance workflow for NyxStrike. Use this skill when a user wants to enumerate subdomains, discover DNS records, find email addresses, or build a full attack surface map for a domain.
Start passive — no direct DNS queries to the target, low noise:
run_tool(tool="subfinder", domain="<target.com>", silent=true, all_sources=true)
Follow up with amass for active DNS brute-force and graph-based enumeration:
# Passive mode (intelligence gathering only)
run_tool(tool="amass", domain="<target.com>", mode="enum",
additional_args="-passive")
# Active mode (DNS resolution, zone transfers)
run_tool(tool="amass", domain="<target.com>", mode="enum",
additional_args="-active -brute")
Attempt zone transfers and enumerate MX, NS, A, CNAME records:
run_tool(tool="dnsenum", domain="<target.com>")
Fierce does brute-force subdomain discovery and identifies nearby IP ranges:
run_tool(tool="fierce", domain="<target.com>")
Collect emails, hosts, and IPs from public sources (Google, Bing, LinkedIn, etc.):
run_tool(tool="theharvester", domain="<target.com>")
Pull archived URLs to find forgotten endpoints, old parameters, and legacy paths:
run_tool(tool="gau", domain="<target.com>")
run_tool(tool="waybackurls", domain="<target.com>")
Feed the results into web-vuln skill tools (nuclei, sqlmap) for vulnerability testing.
Gather registration info, nameservers, and ASN data:
run_tool(tool="whois", target="<target.com>")
After collecting subdomains, probe which ones are live:
run_tool(tool="httpx", target="<subdomains_file_or_list>",
probe=true, title=true, status_code=true, tech_detect=true)
subfinder → amass → dnsenum/fierce → theharvester
↓
httpx probe
↓
web-recon + web-vuln skills
| Tool | Use case |
|---|---|
subfinder | Passive subdomain discovery |
amass | Active/passive subdomain + graph enumeration |
dnsenum | DNS zone transfer + record enumeration |
fierce | DNS brute-force + nearby IP ranges |
theharvester | Email, host, IP OSINT from public sources |
gau | Historical URL discovery (AlienVault/Wayback) |
waybackurls | Wayback Machine URL archive |
whois | Domain registration + ASN info |
httpx | Probe live subdomains |
bbot | Comprehensive OSINT + recon automation |