This hunt targets adversary behavior where IoT devices or internal workstations 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 before they escalate into large-scale DDoS attacks or lateral movement campaigns within the network.
Threat: mirai Total URLs: 4 Active URLs: 4
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://110.138.10.48:48865/bin.sh | online | malware_download | 2026-07-16 |
hxxp://182.126.116.115:46286/i | online | malware_download | 2026-07-16 |
hxxp://182.126.116.115:46286/bin.sh | online | malware_download | 2026-07-16 |
hxxp://123.11.176.76:58197/i | online | malware_download | 2026-07-16 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["110.138.10.48", "123.11.176.76", "182.126.116.115"]);
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(["110.138.10.48", "123.11.176.76", "182.126.116.115"]);
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 or exclusions:
Automated Firmware Update Scans by IT Management Tools
10.20.50.0/24) destined for known vendor update domains (e.g., *.synology.com, *.fortinet.net). Alternatively, whitelist the specific destination IPs associated with these vendors in the SIEM correlation rule.Scheduled Vulnerability Assessment Scans
nessus.exe, qualysagent.service) and the destination URL contains keywords related to threat intelligence feeds or benchmarking services.