This hypothesis posits that adversaries are leveraging known Mirai botnet indicators of compromise to establish persistent command-and-control channels or initiate lateral movement within the network. The SOC team should proactively hunt for these specific IOCs in Azure Sentinel to rapidly identify and contain early-stage IoT device infections before they escalate into large-scale distributed denial-of-service attacks.
Malware Family: Mirai Total IOCs: 2 IOC Types: sha256_hash, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://94[.]154[.]43[.]5/mips | payload_delivery | 2026-06-30 | 75% |
| sha256_hash | a5b42be0041bff5a4e521412014c2e7029ff08df7e9746fb4d923d40cee0e7d7 | payload | 2026-06-30 | 80% |
// Hunt for access to known malicious URLs
// Source: ThreatFox - Mirai
let malicious_urls = dynamic(["http://94.154.43.5/mips"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
// Hunt for files matching known malicious hashes
// Source: ThreatFox - Mirai
let malicious_hashes = dynamic(["a5b42be0041bff5a4e521412014c2e7029ff08df7e9746fb4d923d40cee0e7d7"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
DeviceFileEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the ThreatFox: Mirai IOCs rule in an enterprise environment, along with recommended filters and exclusions:
Network Inventory & Asset Discovery Scans
Scheduled Firmware Update Jobs
Cloud-Based Device Management Gateways