This detection rule identifies network traffic matching known Indicators of Compromise (IOCs) from the Mirai botnet, which adversaries exploit to establish command-and-control channels and launch large-scale DDoS attacks. Proactively hunting for these signatures in Azure Sentinel is critical to rapidly isolate infected IoT devices before they compromise internal network integrity or initiate widespread infrastructure disruption.
Malware Family: Mirai Total IOCs: 2 IOC Types: url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://8[.]213[.]214[.]55/nerv.mips | payload_delivery | 2026-07-23 | 75% |
| url | hxxp://110[.]37[.]76[.]236:59516/Mozi.m | payload_delivery | 2026-07-23 | 75% |
// Hunt for access to known malicious URLs
// Source: ThreatFox - Mirai
let malicious_urls = dynamic(["http://8.213.214.55/nerv.mips", "http://110.37.76.236:59516/Mozi.m"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
UrlClickEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios and corresponding filters/exclusions for the ThreatFox: Mirai IOCs detection rule in an enterprise environment:
IoT Device Firmware Updates via Scheduled Tasks
UpdateService.exe running under SYSTEM) and whitelist the known vendor update server IP ranges (e.g., 192.0.2.50-60). Additionally, exclude traffic originating from the “IoT Management VLAN” subnet during maintenance windows (e.g., 02:00–04:00 UTC).External Backup and Cloud Sync Operations
Veeam.Backup.Service.exe) when communicating on standard HTTPS ports.Network Scanning and Vulnerability Assessment Tools