Response playbooks, investigation guides, and Atomic Red Team tests are Pro-only. Upgrade to unlock the full detection package for THREAT-Recon-DNSSubdomainWordlistEnumeration.

Upgrade to Pro
THREAT-Recon-DNSSubdomainWordlistEnumeration Elastic Security · Elastic

Detect DNS Subdomain Wordlist Brute-Force Enumeration in Elastic Security

Adversaries iteratively query an organization's authoritative or recursive DNS infrastructure with large wordlists of candidate subdomain labels (dev, staging, vpn, mail-old, api-internal, etc.) to discover hostnames that were never intentionally published — forgotten staging environments, internal-only services accidentally exposed, or third-party integrations. Unlike the HTTP directory/file wordlist scanning covered by generic Active Scanning detections, this technique operates entirely at the DNS layer using tools such as massdns, puredns, gobuster's dns mode, dnsrecon, fierce, and amass's active enumeration mode, which resolve thousands of candidate FQDNs per minute and rely on the high NXDOMAIN response rate as an intrinsic side effect of brute-forcing an unknown namespace. Because these queries never touch a web server or generate an HTTP log line, they are invisible to WAF- and web-access-log-based scanning detections and require dedicated visibility into DNS server query logs (authoritative nameserver, recursive resolver, or DNS security gateway) plus endpoint process telemetry for internal pivot scanning.

MITRE ATT&CK

Tactic
Reconnaissance

Elastic Detection Query

Elastic Security (Elastic)
eql
process where event.type == "start" and (
  process.name : ("massdns*", "gobuster*", "puredns*", "dnsrecon*", "fierce*", "amass*", "dnsx*", "altdns*") or
  process.args : ("dns", "bruteforce", "enum") and process.args : ("-active", "-r", "-w")
)
medium severity medium confidence

Detects execution of DNS subdomain wordlist enumeration tooling using Elastic ECS process events. This covers the host-visible process signal for massdns, gobuster (dns mode), puredns, dnsrecon, fierce, amass (active mode), dnsx, and altdns. Pair with a network.protocol:"dns" rule aggregating NXDOMAIN response rate per source over Packetbeat/Zeek DNS logs for the network-layer confirmation branch, since this rule alone does not capture DNS server-side query volume.

Data Sources

Elastic Endpoint SecurityWinlogbeat (Sysmon)Packetbeat / Zeek DNS logs (for query-volume network-layer confirmation)

Required Tables

logs-endpoint.events.process-*logs-network_traffic.dns-*

False Positives & Tuning

  • Security engineering or ASM teams running authorized subdomain discovery as part of scheduled attack-surface inventory
  • Approved red team engagements actively enumerating the DNS namespace during the engagement window

Other platforms for THREAT-Recon-DNSSubdomainWordlistEnumeration


Testing Methodology

Validate this detection against 3 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1Simulated DNS Subdomain Wordlist Query Burst

    Expected signal: Authoritative/recursive DNS server query log entries showing 60 sequential NXDOMAIN responses for distinct subdomains of example.com from the executing host's source IP within a short window.

  2. Test 2gobuster DNS Mode Execution

    Expected signal: Process creation event for gobuster with CommandLine containing 'dns -d example.com -w' and the wordlist file path.

  3. Test 3massdns Bulk Subdomain Resolution

    Expected signal: Process creation event for massdns with CommandLine containing '-r' and '-t A' flags; DNS query log entries for the listed candidate subdomains.

Unlock playbooks & atomic tests with Pro

Get the full detection package for THREAT-Recon-DNSSubdomainWordlistEnumeration — response playbook and atomic red team tests, plus investigation guidance and hunting queries.

df00tech Pro — £29/user/month

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections