← 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-12T11:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies network traffic matching known Indicators of Compromise (IOCs) from the Mirai botnet, which adversaries leverage to establish command-and-control channels and launch large-scale DDoS attacks against IoT infrastructure. A SOC team should proactively hunt for these signatures in Azure Sentinel to rapidly isolate compromised devices before they are recruited into a broader botnet capable of disrupting critical services or exfiltrating sensitive data.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port217[.]60[.]195[.]187:7075botnet_cc2026-08-1280%
ip:port72[.]56[.]52[.]200:9999botnet_cc2026-08-12100%
domaincmd[.]5gf7jtfk0y.stbotnet_cc2026-08-12100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Mirai
let malicious_ips = dynamic(["217.60.195.187", "72.56.52.200"]);
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(["217.60.195.187", "72.56.52.200"]);
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(["cmd.5gf7jtfk0y.st"]);
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 the false positive scenarios and corresponding filters for the ThreatFox: Mirai IOCs detection rule:

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