← Back to SOC feed Coverage →

URLhaus: mirai Malicious URLs

ioc-hunt HIGH URLhaus
CommonSecurityLogDnsEvents
iocurlhaus
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 URLhaus →
Retrieved: 2026-09-17T11:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt targets the presence of known Mirai botnet command-and-control URLs to identify hosts that may have been compromised by this prevalent IoT and Linux malware. Proactively hunting for these indicators in Azure Sentinel allows the SOC to detect lateral movement or initial access vectors before the botnet can propagate across the network or execute its payload.

IOC Summary

Threat: mirai Total URLs: 4 Active URLs: 3

URLStatusThreatDate Added
hxxp://42.228.39.193:33505/ionlinemalware_download2026-09-17
hxxp://42.228.39.193:33505/bin.shonlinemalware_download2026-09-17
hxxp://222.127.55.224:51117/ionlinemalware_download2026-09-17
hxxp://196.190.133.180:44589/iofflinemalware_download2026-09-17

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["42.228.39.193", "222.127.55.224"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc

KQL: Url Proxy Hunt

// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["42.228.39.193", "222.127.55.224"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://urlhaus.abuse.ch/