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

Hunt Hypothesis

This detection rule identifies Mirai botnet activity by flagging traffic to known malicious URLs that exploit IoT device vulnerabilities to establish command-and-control channels for potential DDoS campaigns. Proactively hunting for these indicators in Azure Sentinel is critical to rapidly isolate compromised endpoints before they are recruited into a larger botnet capable of disrupting network availability.

IOC Summary

Threat: mirai Total URLs: 11 Active URLs: 11

URLStatusThreatDate Added
hxxp://170.205.31.25/lkxstress.shonlinemalware_download2026-08-09
hxxp://lol.exodustrala.dpdns.org/lkxstress.shonlinemalware_download2026-08-09
hxxp://36.69.80.149:33303/bin.shonlinemalware_download2026-08-09
hxxp://36.69.80.149:33303/ionlinemalware_download2026-08-09
hxxp://180.252.209.203:43259/ionlinemalware_download2026-08-09
hxxp://120.28.139.212:38655/ionlinemalware_download2026-08-09
hxxp://36.48.41.248:36948/ionlinemalware_download2026-08-09
hxxp://180.252.209.203:43259/bin.shonlinemalware_download2026-08-09
hxxp://125.43.0.79:34827/ionlinemalware_download2026-08-09
hxxp://179.108.89.220:43996/ionlinemalware_download2026-08-09
hxxp://117.24.218.134:45145/ionlinemalware_download2026-08-09

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["lol.exodustrala.dpdns.org", "170.205.31.25", "36.48.41.248", "120.28.139.212", "36.69.80.149", "125.43.0.79", "117.24.218.134", "179.108.89.220", "180.252.209.203"]);
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(["lol.exodustrala.dpdns.org", "170.205.31.25", "36.48.41.248", "120.28.139.212", "36.69.80.149", "125.43.0.79", "117.24.218.134", "179.108.89.220", "180.252.209.203"]);
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

Here are 4 specific false positive scenarios for the URLhaus: Mirai Malicious URLs detection rule within an enterprise environment, along with suggested filters and exclusions:


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