This detection identifies network traffic connecting to known Mirai botnet command-and-control URLs, signaling potential IoT device compromise or lateral movement by threat actors leveraging Mirai variants. Proactively hunting for these indicators in Azure Sentinel is critical to rapidly isolate infected endpoints and prevent the propagation of large-scale DDoS attacks before they disrupt core infrastructure.
Threat: mirai Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.42.213/bins/phantom.mpsl | online | malware_download | 2026-07-22 |
hxxp://91.92.42.213/bins/phantom.mips | online | malware_download | 2026-07-22 |
hxxp://91.92.42.213/bins/phantom.x86 | online | malware_download | 2026-07-22 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["91.92.42.213"]);
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(["91.92.42.213"]);
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 4 specific false positive scenarios for the URLhaus: Mirai Malicious URLs detection rule, along with targeted exclusion strategies suitable for an enterprise environment:
IoT Device Firmware Update Scans
Source Hostname or Destination FQDN. For example, exclude traffic from meraki.cisco.com, arubanetworks.com, and known IoT management subnets (e.g., 10.50.20.0/24) where these devices reside.Scheduled Antivirus Definition Cloud Queries
C-Service.exe, SentinelOne.exe, MsMpEng.exe). Additionally, exclude traffic occurring during known maintenance windows (e.g., 02:00–04:00 UTC) if the rule fires exclusively during these times.Third-Party Supply Chain Vulnerability Scanners