원클릭으로
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 |