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

Hunt Hypothesis

This detection identifies adversary activity involving traffic to seven specific malicious URLs associated with Mirai botnet campaigns, which are known to compromise IoT devices and initiate large-scale DDoS attacks. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate infected endpoints before they can be leveraged as part of a distributed attack infrastructure or used to exfiltrate sensitive data.

IOC Summary

Threat: mirai Total URLs: 7 Active URLs: 6

URLStatusThreatDate Added
hxxp://129.121.110.105/4hRonlinemalware_download2026-07-31
hxxp://129.121.110.105/CZkonlinemalware_download2026-07-31
hxxp://129.121.110.105/V9Gonlinemalware_download2026-07-31
hxxp://129.121.110.105/aaaEonlinemalware_download2026-07-31
hxxp://129.121.110.105/mmoonlinemalware_download2026-07-31
hxxp://156.226.174.98/all.shonlinemalware_download2026-07-31
hxxp://hehe.dstat.tech/nova.shofflinemalware_download2026-07-31

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["156.226.174.98", "129.121.110.105"]);
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(["156.226.174.98", "129.121.110.105"]);
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

False Positive Scenarios for “URLhaus: mirai Malicious URLs” Rule

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