This hunt targets adversary behavior where IoT devices or internal hosts communicate with known Mirai botnet command-and-control servers via specific malicious URLs identified by URLhaus. Proactively hunting for these connections in Azure Sentinel is critical to detect early-stage Mirai infections before they escalate into large-scale network scanning and DDoS attacks that could compromise infrastructure availability.
Threat: mirai Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://182.126.194.87:46521/i | online | malware_download | 2026-07-08 |
hxxp://182.126.194.87:46521/bin.sh | online | malware_download | 2026-07-08 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["182.126.194.87"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc
// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["182.126.194.87"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the URLhaus: mirai Malicious URLs detection rule in an enterprise environment, along with suggested filters and exclusions:
IoT Device Firmware Update Cycles
*.cisco.com, *.ubnt.com) and the HTTP User-Agent contains the device model name rather than a generic browser string.Automated Vulnerability Scanning by Security Tools
User-Agent header explicitly identifies the scanning tool (e.g., Nessus/10.x, QualysAgent) and the request frequency aligns with the scheduled scan window (e.g., 02:00–04:00 UTC).Network Administration and Patch Management Jobs