This detection rule identifies network traffic matching known Indicators of Compromise (IOCs) from the ThreatFox platform that are specifically linked to Mirai botnet activity. Proactively hunting for these signals in Azure Sentinel is critical because Mirai’s ability to rapidly compromise IoT devices can lead to large-scale DDoS attacks and lateral movement within the enterprise network before traditional alerts trigger.
Malware Family: Mirai Total IOCs: 3 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | m4ch.ru | botnet_cc | 2026-08-07 | 100% |
| domain | bd.p0p3w4sh3r3.boats | botnet_cc | 2026-08-07 | 100% |
| domain | test.txtensatorxgyt.xyz | botnet_cc | 2026-08-07 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Mirai
let malicious_domains = dynamic(["m4ch.ru", "bd.p0p3w4sh3r3.boats", "test.txtensatorxgyt.xyz"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
DnsEvents | Ensure this data connector is enabled |
Here are the documented false positive scenarios and corresponding filters for the ThreatFox: Mirai IOCs detection rule:
Scheduled IoT Firmware Updates via Vendor Portals
cisco.com or ubnt.com) on a daily schedule. These updates often involve downloading firmware binaries that match the specific hash signatures or domain patterns flagged in the Mirai IOC list.10.50.20.0/24) and exclude traffic destined for verified vendor update domains (*.cisco.com, *.ubnt.com) during the defined maintenance window (e.g., 02:00–04:00 UTC).Internal Network Scanning by Security Tools
DevOps CI/CD Pipeline Artifact Deployment