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

Hunt Hypothesis

This hypothesis targets the presence of known Mirai botnet command-and-control or propagation URLs, indicating active lateral movement or initial access attempts by this prevalent IoT malware family. Proactively hunting for these specific indicators in Azure Sentinel allows the SOC team to identify compromised endpoints or network traffic before the botnet can fully establish its foothold and initiate large-scale scanning or DDoS activities.

IOC Summary

Threat: mirai Total URLs: 6 Active URLs: 3

URLStatusThreatDate Added
hxxp://3.133.139.254/bot_macosofflinemalware_download2026-09-10
hxxp://92.119.167.102:8000/armonlinemalware_download2026-09-10
hxxp://38.55.99.215:8080/moot.x86_64onlinemalware_download2026-09-10
hxxp://105.225.5.139:52251/iofflinemalware_download2026-09-10
hxxp://101.108.69.64:50943/ionlinemalware_download2026-09-10
hxxp://105.225.5.139:52251/bin.shofflinemalware_download2026-09-10

KQL: Url Dns Hunt

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