This detection identifies network traffic accessing known Mirai botnet command-and-control or infection URLs to uncover potential IoT device compromises within the environment. Proactively hunting for these specific indicators in Azure Sentinel is critical because Mirai infections can rapidly propagate across connected devices, leading to large-scale DDoS attacks and unauthorized lateral movement before traditional alerts trigger.
Threat: mirai Total URLs: 3 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://222.185.199.120:32826/i | online | malware_download | 2026-08-26 |
hxxp://175.30.115.35:44656/i | offline | malware_download | 2026-08-26 |
hxxp://175.30.115.35:44656/bin.sh | offline | malware_download | 2026-08-26 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["222.185.199.120"]);
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(["222.185.199.120"]);
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 and corresponding filters/exclusions for the URLhaus: mirai Malicious URLs detection rule in an enterprise environment:
IoT Device Firmware Updates via Vendor Portals
10.50.x.x) and known vendor update domains (e.g., *.cisco.com, *.ubnt.com). Additionally, exclude traffic from the “IoT Management” group in your EDR/SIEM if the destination port is restricted to standard HTTPS (443) or HTTP (80).Scheduled Security Scanner Traffic
svc-nessus-scan or svc-qualys-agent) during their defined maintenance windows (e.g., 02:00–04:00 UTC). Alternatively, filter out URLs containing known scanner query parameters like /api/v1/scan in the URL path.Cloud Backup and Synchronization Services