This hunt targets adversary behavior where IoT devices or internal hosts communicate with known Mirai botnet command-and-control infrastructure via specific malicious URLs identified by URLhaus. Proactively hunting for these connections in Azure Sentinel is critical to detect early-stage botnet infections before they escalate into large-scale DDoS attacks or lateral movement campaigns within the network.
Threat: mirai Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://125.160.131.186:42169/i | online | malware_download | 2026-07-10 |
hxxp://103.172.186.195:45747/i | online | malware_download | 2026-07-09 |
hxxp://45.90.163.37/goahead | online | malware_download | 2026-07-09 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["125.160.131.186", "103.172.186.195", "45.90.163.37"]);
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.160.131.186", "103.172.186.195", "45.90.163.37"]);
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 4 specific false positive scenarios for the URLhaus: mirai Malicious URLs detection rule in an enterprise environment, along with suggested filters or exclusions:
Automated Firmware Update Scans by Configuration Management Tools
10.20.50.x range) or specific service accounts (e.g., svc_ansible_admin) when accessing URLs containing keywords like /firmware, /update, or /check.Threat Intelligence Feeds and SIEM Enrichment Jobs
192.168.100.x) and restrict the rule to only trigger on user-facing workstations, excluding infrastructure servers with OS tags like