This hunt detects adversary behavior where internal Azure resources attempt to 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 because early identification of Mirai traffic allows the SOC team to isolate compromised IoT or edge devices before they are leveraged for large-scale DDoS attacks or lateral movement within the network.
Threat: mirai Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://60.215.23.95:55729/i | online | malware_download | 2026-07-13 |
hxxp://45.207.196.86/all.sh | online | malware_download | 2026-07-13 |
hxxp://123.148.225.193:43983/i | online | malware_download | 2026-07-13 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["60.215.23.95", "45.207.196.86", "123.148.225.193"]);
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(["60.215.23.95", "45.207.196.86", "123.148.225.193"]);
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 Network Management Tools
host.name containing “NMS-Server” or specific IP ranges of management appliances) and restrict the alert to only trigger if the destination port is not standard HTTP/HTTPS (80/443) used for firmware downloads.Scheduled Vulnerability Scans by Security Appliances
source.ip in [10.50.2.0/24]) during defined maintenance windows (e.g., time between 02:00 and 06:00). Additionally, filter out events where the