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

Hunt Hypothesis

This hunt hypothesis targets the presence of known Mirai malware indicators of compromise, which signal that an adversary has successfully compromised IoT devices to establish a foothold for large-scale DDoS attacks. Proactively hunting for these IOCs in Azure Sentinel is critical to identify and isolate infected endpoints before they are leveraged to amplify traffic and disrupt network availability.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
urlhxxp://vps.atlas101.us.kgbotnet_cc2026-09-03100%
ip:port94[.]154[.]43[.]69:7768botnet_cc2026-09-03100%
urlhxxp://loveher.dpdns.orgbotnet_cc2026-09-03100%
urlhxxp://langec.jewmailer.net:7768botnet_cc2026-09-03100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Mirai
let malicious_ips = dynamic(["94.154.43.69"]);
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.69"]);
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://vps.atlas101.us.kg", "http://loveher.dpdns.org", "http://langec.jewmailer.net:7768"]);
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/