This hunt targets adversary behavior where IoT devices or network assets communicate with known Mirai botnet command-and-control servers via specific malicious URLs identified by URLhaus. Proactively hunting for these connections in Azure Sentinel is critical to detect early-stage botnet infections and prevent potential large-scale distributed denial-of-service (DDoS) attacks before they propagate across the environment.
Threat: mirai Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://125.44.155.10:60685/i | online | malware_download | 2026-07-14 |
hxxp://125.44.155.10:60685/bin.sh | online | malware_download | 2026-07-14 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["125.44.155.10"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc
// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["125.44.155.10"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the URLhaus: mirai Malicious URLs detection rule in an enterprise environment, along with suggested filters and exclusions:
IoT Device Firmware Updates via Cloud Repositories
10.x.x.0/24) or specific device FQDNs (e.g., *.ubnt.com, cisco.com). Additionally, whitelist destination URLs containing keywords like /firmware/ or /update/ if they originate from trusted CDNs.Scheduled Vulnerability Scans by Security Tools
svc-nessus-scan). Filter for HTTP methods limited to GET and HEAD requests targeting known threat intelligence domains (e.g., urlhaus.abuse.ch) during