← 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-14T23:00:00Z · Confidence: medium

Hunt Hypothesis

This detection identifies Mirai malware infections by monitoring for malicious URLs associated with the botnet’s exploitation of IoT devices through default credentials and weak security configurations. A SOC team should proactively hunt for this behavior in Azure Sentinel to rapidly isolate compromised endpoints before they are recruited into a large-scale DDoS attack, thereby preventing widespread network disruption.

IOC Summary

Threat: mirai Total URLs: 6 Active URLs: 5

URLStatusThreatDate Added
hxxp://103.172.186.165:43638/bin.shonlinemalware_download2026-08-14
hxxp://179.108.89.220:55094/ionlinemalware_download2026-08-14
hxxp://36.69.88.195:51348/ionlinemalware_download2026-08-14
hxxp://115.203.31.123:48146/iofflinemalware_download2026-08-14
hxxp://140.237.6.81:41787/ionlinemalware_download2026-08-14
hxxp://114.228.239.251:54062/ionlinemalware_download2026-08-14

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["179.108.89.220", "114.228.239.251", "36.69.88.195", "140.237.6.81", "103.172.186.165"]);
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(["179.108.89.220", "114.228.239.251", "36.69.88.195", "140.237.6.81", "103.172.186.165"]);
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 in an enterprise environment, including suggested filters and exclusions:

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