← Back to SOC feed Coverage →

ThreatFox: Mirai IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
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-07-31T11:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies network traffic matching known Mirai botnet indicators of compromise to uncover potential IoT device infections and command-and-control communications. Proactively hunting for these signatures in Azure Sentinel is critical to rapidly isolate compromised endpoints before they are leveraged for large-scale DDoS attacks or lateral movement within the enterprise network.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port217[.]60[.]195[.]127:7249botnet_cc2026-07-31100%
ip:port92[.]38[.]167[.]76:34245botnet_cc2026-07-3175%
ip:port185[.]237[.]205[.]252:4837botnet_cc2026-07-3175%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Mirai
let malicious_ips = dynamic(["92.38.167.76", "185.237.205.252", "217.60.195.127"]);
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(["92.38.167.76", "185.237.205.252", "217.60.195.127"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

Required Data Sources

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

References

False Positive Guidance

False Positive Scenarios for “ThreatFox: Mirai IOCs” Rule

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