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

Hunt Hypothesis

This hunt targets the presence of known Mirai botnet indicators of compromise, which typically signify an active IoT or server compromise used for large-scale DDoS attacks or lateral movement. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify and isolate infected assets before they are leveraged to amplify traffic or establish persistent footholds within the network.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port94[.]154[.]43[.]12:33botnet_cc2026-09-2275%
sha256_hash6eee92142627b47cadb3a4833b18fa1f850079a4e643db0ef2a462fb2cdbc6f6payload2026-09-22100%
sha256_hash18adfa234f839da6dfe8498c5ee850a5a2110c0c600746c96a0e152c81d0e19bpayload2026-09-22100%
sha256_hashcb4f23546d6a357f4950b07c9783a26a43bb3b4bede2bdce635d59e7e34bac80payload2026-09-22100%
sha256_hash29eb6e30d78b3af2acefdf69632b5ce754e9cbab7c79873449f20c7945ad82a6payload2026-09-22100%
sha256_hashc7e7d77602c121ebe2785d8e4068b7d459abe975ad9e3e8471ba28e9783b8dcapayload2026-09-22100%
sha256_hash45f31662334cc30b490ceb4abb90193980274a28204bcc862d1cdfe01326ba23payload2026-09-22100%
ip:port222[.]141[.]122[.]254:34413payload_delivery2026-09-2275%
ip:port81[.]227[.]54[.]149:33012payload_delivery2026-09-2275%
ip:port113[.]228[.]85[.]214:50311payload_delivery2026-09-2275%
ip:port113[.]17[.]176[.]184:42461payload_delivery2026-09-2275%
urlhxxp://176[.]65[.]139[.]131/bins/mipspayload_delivery2026-09-2290%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Mirai
let malicious_ips = dynamic(["81.227.54.149", "222.141.122.254", "94.154.43.12", "113.228.85.214", "113.17.176.184"]);
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(["81.227.54.149", "222.141.122.254", "94.154.43.12", "113.228.85.214", "113.17.176.184"]);
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://176.65.139.131/bins/mips"]);
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(["6eee92142627b47cadb3a4833b18fa1f850079a4e643db0ef2a462fb2cdbc6f6", "18adfa234f839da6dfe8498c5ee850a5a2110c0c600746c96a0e152c81d0e19b", "cb4f23546d6a357f4950b07c9783a26a43bb3b4bede2bdce635d59e7e34bac80", "29eb6e30d78b3af2acefdf69632b5ce754e9cbab7c79873449f20c7945ad82a6", "c7e7d77602c121ebe2785d8e4068b7d459abe975ad9e3e8471ba28e9783b8dca", "45f31662334cc30b490ceb4abb90193980274a28204bcc862d1cdfe01326ba23"]);
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/