← Back to SOC feed Coverage →

ThreatFox: Mirai IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsUrlClickEvents
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-09-04T11:00:00Z · Confidence: high

Hunt Hypothesis

This hypothesis targets the presence of known Mirai botnet indicators, which adversaries use to establish command-and-control channels or propagate malware across the network. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify compromised assets early, preventing the Mirai botnet from leveraging them for large-scale DDoS attacks or lateral movement before it escalates.

IOC Summary

Malware Family: Mirai Total IOCs: 4 IOC Types: url, sha256_hash, ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port94[.]154[.]43[.]88:4330botnet_cc2026-09-0480%
ip:port94[.]154[.]43[.]88:44321botnet_cc2026-09-0480%
urlhxxp://2[.]26[.]124[.]67:889/agustin51payload_delivery2026-09-0475%
sha256_hash7967790ef8f975fbc7327d575e13f6ce497b7948c42264531bcd4fcaa47ba6a9payload2026-09-0480%

KQL: Ip Hunt

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

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Mirai
let malicious_urls = dynamic(["http://2.26.124.67:889/agustin51"]);
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(["7967790ef8f975fbc7327d575e13f6ce497b7948c42264531bcd4fcaa47ba6a9"]);
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
CommonSecurityLogEnsure this data connector is enabled
DeviceFileEventsEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

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