This hunt detects adversary behavior where IoT devices or compromised hosts initiate outbound connections to known Mirai botnet command-and-control infrastructure via specific malicious URLs. Proactively hunting for these indicators in Azure Sentinel is critical because early identification of Mirai activity allows the SOC team to isolate infected assets before they are leveraged for large-scale DDoS attacks or lateral movement within the network.
Threat: mirai Total URLs: 5 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://124.135.10.58:51825/bin.sh | online | malware_download | 2026-07-17 |
hxxp://217.60.195.187/kla.sh | online | malware_download | 2026-07-17 |
hxxp://105.186.160.136:33521/i | online | malware_download | 2026-07-17 |
hxxp://205.237.110.232/tplink.sh | online | malware_download | 2026-07-17 |
hxxp://41.216.189.236/g.sh | online | malware_download | 2026-07-17 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["105.186.160.136", "217.60.195.187", "205.237.110.232", "41.216.189.236", "124.135.10.58"]);
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(["105.186.160.136", "217.60.195.187", "205.237.110.232", "41.216.189.236", "124.135.10.58"]);
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, tailored for an enterprise environment:
Automated Firmware Update Scans by Network Management Tools
mirai even though the traffic is authorized administrative scanning.10.20.50.0/24) when accessing known update vendor domains, regardless of the URLhaus tag.Scheduled Vulnerability Assessment Jobs
Cloud-Based Threat Intelligence Feeds Integration