← Back to SOC feed Coverage →

ThreatFox: Mirai IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEventsUrlClickEvents
elf-miraiiocthreatfox
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-06-30T11:00:00Z · Confidence: high

Hunt Hypothesis

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.

IOC Summary

Malware Family: Mirai Total IOCs: 2 IOC Types: sha256_hash, url

TypeValueThreat TypeFirst SeenConfidence
urlhxxp://94[.]154[.]43[.]5/mipspayload_delivery2026-06-3075%
sha256_hasha5b42be0041bff5a4e521412014c2e7029ff08df7e9746fb4d923d40cee0e7d7payload2026-06-3080%

KQL: Url Hunt

// 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

KQL: Hash Hunt

// 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

Required Data Sources

Sentinel TableNotes
DeviceFileEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are specific false positive scenarios for the ThreatFox: Mirai IOCs rule in an enterprise environment, along with recommended filters and exclusions:

Original source: https://threatfox.abuse.ch/browse/malware/elf.mirai/