← Back to SOC feed Coverage →

ThreatFox: Mirai IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsDnsEvents
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-14T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects active network reconnaissance and potential botnet recruitment by identifying traffic matching known Mirai malware indicators of compromise (IOCs). Proactively hunting for these signatures in Azure Sentinel is critical to rapidly isolate infected IoT devices before they can launch large-scale distributed denial-of-service attacks or pivot laterally within the enterprise network.

IOC Summary

Malware Family: Mirai Total IOCs: 13 IOC Types: domain, ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port2[.]26[.]81[.]46:1999botnet_cc2026-08-1480%
domainafterhours.clickbotnet_cc2026-08-14100%
domainimagiraffe.shopbotnet_cc2026-08-14100%
ip:port135[.]136[.]191[.]231:8080botnet_cc2026-08-14100%
domainnightslikethis.clubbotnet_cc2026-08-14100%
domainchickenfriedwatermelonkoolaid.storebotnet_cc2026-08-14100%
ip:port135[.]136[.]191[.]231:23botnet_cc2026-08-14100%
ip:port135[.]136[.]191[.]231:123botnet_cc2026-08-14100%
ip:port135[.]136[.]191[.]231:80botnet_cc2026-08-14100%
ip:port135[.]136[.]191[.]231:25565botnet_cc2026-08-14100%
ip:port3[.]34[.]139[.]65:123botnet_cc2026-08-14100%
ip:port45[.]38[.]249[.]63:1004payload_delivery2026-08-1450%
ip:port172[.]104[.]49[.]49:3667botnet_cc2026-08-14100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Mirai
let malicious_ips = dynamic(["2.26.81.46", "135.136.191.231", "45.38.249.63", "172.104.49.49", "3.34.139.65"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["2.26.81.46", "135.136.191.231", "45.38.249.63", "172.104.49.49", "3.34.139.65"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Mirai
let malicious_domains = dynamic(["afterhours.click", "imagiraffe.shop", "nightslikethis.club", "chickenfriedwatermelonkoolaid.store"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

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

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