This hunt detects adversary activity where internal assets 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 identify early-stage IoT device compromises before they escalate into large-scale network scanning or DDoS attacks.
Threat: mirai Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://120.28.200.193:51670/bin.sh | online | malware_download | 2026-07-12 |
hxxp://105.184.236.22:51533/bin.sh | online | malware_download | 2026-07-12 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["120.28.200.193", "105.184.236.22"]);
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(["120.28.200.193", "105.184.236.22"]);
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 and exclusions:
IoT Device Firmware Updates via Vendor Portals
Asset_Group = "IoT_Cameras") connecting to whitelisted vendor domains (e.g., *.meraki.com, *.ui.com). Additionally, filter out traffic originating from the internal VLAN dedicated to IoT devices (Source_Net = 10.50.x.x/24) when the destination URL contains known vendor signatures.Scheduled Vulnerability Scanning and Asset Discovery
Source_IP = "192.168.10.5-10" for Tenable agents) during scheduled maintenance windows