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

Hunt Hypothesis

The ThreatFox: Mirai IOCs rule detects potential compromise of IoT devices through exploitation of default credentials or weak configurations, which are common indicators of Mirai botnet activity. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate early-stage DDoS botnet infections before they escalate into large-scale attacks.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port179[.]43[.]182[.]70:3778botnet_cc2026-06-0280%
ip:port14[.]116[.]219[.]149:2375payload_delivery2026-06-0180%
ip:port198[.]50[.]202[.]93:80payload_delivery2026-06-0180%
ip:port34[.]86[.]60[.]20:22payload_delivery2026-06-0180%
ip:port34[.]181[.]210[.]37:80payload_delivery2026-06-0180%
urlhxxp://34[.]181[.]210[.]37/meowpayload_delivery2026-06-0180%
urlhxxp://34[.]181[.]210[.]37/meowarm64payload_delivery2026-06-0180%
ip:port136[.]107[.]187[.]197:22payload_delivery2026-06-0180%
sha256_hash86d162d2e4ae90daad260faa7df25be2e28bc70a97d0d0548d80a670177a2739payload2026-06-0185%
sha256_hash5bf67d64e94a8ed6b81a0855fee52626eb0f4caf1772518fc2404883030451c2payload2026-06-0185%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Mirai
let malicious_ips = dynamic(["14.116.219.149", "34.86.60.20", "179.43.182.70", "34.181.210.37", "136.107.187.197", "198.50.202.93"]);
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(["14.116.219.149", "34.86.60.20", "179.43.182.70", "34.181.210.37", "136.107.187.197", "198.50.202.93"]);
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://34.181.210.37/meow", "http://34.181.210.37/meowarm64"]);
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(["86d162d2e4ae90daad260faa7df25be2e28bc70a97d0d0548d80a670177a2739", "5bf67d64e94a8ed6b81a0855fee52626eb0f4caf1772518fc2404883030451c2"]);
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/