This hunt targets adversary behavior where IoT devices or network endpoints 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 lateral movement before the compromised assets are leveraged for large-scale DDoS attacks.
Threat: mirai Total URLs: 3 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://49.79.167.219:44129/i | online | malware_download | 2026-06-30 |
hxxp://49.79.167.219:44129/bin.sh | online | malware_download | 2026-06-30 |
hxxp://222.208.111.49:41872/i | offline | malware_download | 2026-06-30 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["49.79.167.219"]);
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(["49.79.167.219"]);
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 targeted filtering strategies:
Automated Firmware Update Scans by Network Management Tools
Host_Name contains "SolarWinds-Server" or IP in 10.20.50.0/24) and limit the rule to exclude traffic originating from known management VLANs during scheduled maintenance windows (e.g., 02:00–04:00 UTC).Security Information and Event Management (SIEM) Enrichment Jobs
User-Agent: "Splunk-Enrichment-Job-v2") or filter by process name if the detection includes process context (e.g., exclude processes named `splunkd.exe