← Back to SOC feed Coverage →

ThreatFox: Mirai IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsUrlClickEvents
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-05-23T23:00:00Z · Confidence: high

Hunt Hypothesis

Devices exhibiting signs of Mirai malware infection, such as unusual outbound traffic patterns and failed login attempts, may indicate compromised IoT devices being used in a botnet, requiring proactive hunting to identify and isolate affected systems before they contribute to large-scale DDoS attacks. SOC teams should actively hunt for these indicators in Azure Sentinel to detect and mitigate Mirai-based threats early, preventing potential network disruption and service outages.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port176[.]65[.]139[.]199:1999botnet_cc2026-05-2380%
ip:port45[.]148[.]10[.]210:80payload_delivery2026-05-2385%
urlhxxp://45[.]148[.]10[.]210/hostmanepayload_delivery2026-05-2385%
urlhxxp://45[.]148[.]10[.]210/blackbihpayload_delivery2026-05-2385%
urlhxxp://45[.]148[.]10[.]210/blackboipayload_delivery2026-05-2385%
urlhxxp://45[.]148[.]10[.]210/listenerpayload_delivery2026-05-2385%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Mirai
let malicious_ips = dynamic(["176.65.139.199", "45.148.10.210"]);
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(["176.65.139.199", "45.148.10.210"]);
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://45.148.10.210/hostmane", "http://45.148.10.210/blackbih", "http://45.148.10.210/blackboi", "http://45.148.10.210/listener"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure 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/