Response playbooks, investigation guides, and Atomic Red Team tests are Pro-only. Upgrade to unlock the full detection package for THREAT-Recon-DistributedVulnScanBurst.
Upgrade to ProDetect Distributed Vulnerability Scanning Burst Against Web Infrastructure in Sumo Logic CSE
Adversaries and access brokers run automated vulnerability scanners against externally-facing web infrastructure to fingerprint exposed technology and locate exploitable misconfigurations before initial access. Two patterns dominate: a concentrated burst, where a single source IP fires a wide diversity of scanner-signature requests (config file probes, admin panel paths, framework actuator endpoints, path traversal, webshell probes) at a target within minutes; and a low-and-slow variant, where a small rotating pool of source IPs within the same /24 subnet or hosting-provider ASN spreads the same signature diversity across a much longer window to stay under per-IP rate-limit thresholds. Both patterns are typically observed in WAF, reverse-proxy, or perimeter firewall logs rather than endpoint telemetry, since the target is the externally-facing HTTP surface itself. Detection prioritises the diversity of distinct scanner-signature categories touched per source (or per rotating subnet) over raw request volume, since volume alone is indistinguishable from normal crawler/bot traffic while signature diversity is not.
MITRE ATT&CK
- Tactic
- Reconnaissance
Sumo Detection Query
_sourceCategory=*waf* OR _sourceCategory=*firewall* OR _sourceCategory=*reverseproxy*
| parse "uri_path=\"*\"" as UriPath nodrop
| parse "src_ip=*," as SourceIP nodrop
| parse "http_user_agent=\"*\"" as UserAgent nodrop
| where (UriPath matches "*.env*" or UriPath matches "*.git*" or UriPath matches "*wp-login*"
or UriPath matches "*wp-admin*" or UriPath matches "*xmlrpc.php*" or UriPath matches "*actuator*"
or UriPath matches "*phpmyadmin*" or UriPath matches "*solr/admin*" or UriPath matches "*manager/html*"
or UriPath matches "*../../*" or UriPath matches "*shell.php*" or UriPath matches "*eval-stdin*"
or UserAgent matches "*sqlmap*" or UserAgent matches "*Nikto*" or UserAgent matches "*Nessus*"
or UserAgent matches "*Acunetix*" or UserAgent matches "*masscan*" or UserAgent matches "*zgrab*"
or UserAgent matches "*Nuclei*" or UserAgent matches "*wpscan*")
| if (UriPath matches "*.env*", ".env",
if (UriPath matches "*.git*", ".git",
if (UriPath matches "*wp-login*" or UriPath matches "*wp-admin*", "wordpress_admin",
if (UriPath matches "*xmlrpc.php*", "xmlrpc",
if (UriPath matches "*actuator*", "spring_actuator", "other_scanner_signature"))))) as MatchedSignature
| count as Requests, count_distinct(UriPath) as DistinctPaths, count_distinct(MatchedSignature) as DistinctSignatures by SourceIP
| where DistinctSignatures >= 6 and DistinctPaths >= 10
| sort by DistinctSignatures Sumo Logic query parsing WAF/reverse-proxy log fields, categorising matched scanner signatures, and aggregating distinct signature/path counts per source IP to flag a concentrated burst.
Data Sources
Required Tables
False Positives & Tuning
- Authorized internal or contracted vulnerability management scans (Qualys, Nessus, Tenable, Rapid7) running against production on an approved scanning schedule
- Bug bounty researchers or penetration testers operating within an approved rules-of-engagement window
- Uptime/synthetic monitoring services (Pingdom, UptimeRobot, StatusCake) or health-check bots hitting many paths from a small set of monitoring IPs
- SEO crawlers, CDN health probes, or archival bots (Googlebot, Bingbot, Wayback Machine) traversing many URL paths that incidentally overlap scanner signature patterns
- Load testing tools or CI/CD smoke tests hitting numerous endpoints rapidly from a shared build-agent IP address
Other platforms for THREAT-Recon-DistributedVulnScanBurst
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.
- Test 1Scanner Signature Path Sweep (Concentrated Burst)
Expected signal: WAF/reverse-proxy logs show >=10 distinct scanner-signature paths requested within seconds from the tester's single source IP, User-Agent 'AtomicTest-VulnScan/1.0'.
- Test 2Known Scanner Tool User-Agent Sweep
Expected signal: WAF logs show dozens of distinct paths (config, admin, CGI, backup file probes) and User-Agent containing 'Nikto' from the tester's source IP within minutes.
- Test 3Low-and-Slow Subnet-Rotated Scan Simulation
Expected signal: WAF logs show 4 distinct source IPs within 198.51.100.0/24, each issuing 2 scanner-signature requests spread across several hours, collectively covering >=8 distinct signature categories.
Unlock playbooks & atomic tests with Pro
Get the full detection package for THREAT-Recon-DistributedVulnScanBurst — response playbook and atomic red team tests, plus investigation guidance and hunting queries.
df00tech Pro — £29/user/month
Related Detections
Tactic Hub
Detection Variants (2)
Different telemetry and tradecraft for the same technique — pick the one that matches the data you collect.
- THREAT-Recon-AutomatedVulnScannerSweepAutomated Vulnerability Scanner Sweep Against External Attack Surface
- THREAT-Recon-ExternalVulnScannerBurstDetectionExternal Vulnerability Scanner Burst/Sweep Against Internet-Facing AssetsBurst/sweep rate-and-breadth angle on external, internet-facing vulnerability scanning — distinct from the tool-signature and internal-scanner-execution branches already covered on the T1595.002 technique page; this detection fires purely on request volume/uniqueness from a single external source against WAF/firewall/proxy logs, without relying on scanner tool names or user-agent strings.