← Back to SOC feed Coverage →

ThreatFox: Mirai IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEventsDnsEventsUrlClickEvents
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-08-13T11:00:01Z · Confidence: high

Hunt Hypothesis

This detection rule identifies network traffic matching three specific Indicators of Compromise (IOCs) linked to the Mirai botnet, which is known for launching large-scale DDoS attacks and compromising IoT devices. A proactive hunt in Azure Sentinel is critical because early identification of these IOCs allows the SOC team to isolate infected endpoints before they are recruited into a broader botnet network capable of disrupting enterprise services.

IOC Summary

Malware Family: Mirai Total IOCs: 3 IOC Types: sha256_hash, domain, url

TypeValueThreat TypeFirst SeenConfidence
sha256_hash35bf80f0af528d458d53a7f7179e0ae284d6fb2be613bab904b8fe115e730b0dpayload2026-08-1380%
urlhxxp://154[.]90[.]70[.]23/x86payload_delivery2026-08-1375%
domainkappadocia.netbotnet_cc2026-08-13100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Mirai
let malicious_domains = dynamic(["kappadocia.net"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Mirai
let malicious_urls = dynamic(["http://154.90.70.23/x86"]);
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(["35bf80f0af528d458d53a7f7179e0ae284d6fb2be613bab904b8fe115e730b0d"]);
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
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are specific false positive scenarios and corresponding filters for the ThreatFox: Mirai IOCs detection rule in an enterprise environment:

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