This detection identifies network traffic accessing known Mirai botnet command-and-control or infection URLs to uncover potential IoT device compromise and lateral movement within the environment. Proactive hunting is essential in Azure Sentinel to rapidly isolate infected endpoints before they are leveraged for large-scale DDoS attacks or used as a foothold for broader network infiltration.
Threat: mirai Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://110.37.90.59:50937/i | online | malware_download | 2026-07-30 |
hxxp://110.37.90.59:50937/bin.sh | online | malware_download | 2026-07-30 |
hxxp://221.14.42.82:39615/bin.sh | online | malware_download | 2026-07-30 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["221.14.42.82", "110.37.90.59"]);
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(["221.14.42.82", "110.37.90.59"]);
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 and their corresponding filters for the URLhaus: mirai Malicious URLs detection rule in an enterprise environment:
IoT Device Firmware Updates via Scheduled Tasks
10.50.20.0/24) or whitelist the specific manufacturer update domains (e.g., *.cisco.com, *.ubnt.com) within the URLhaus detection logic to ignore traffic originating from these known asset groups during scheduled maintenance windows (e.g., 02:00–04:00 UTC).Security Scanner and Vulnerability Assessment Probes
192.168.10.5, 192.168.10.6) from the detection rule. Additionally, add a condition to ignore alerts where the destination URL contains known threat intelligence feed domains (e.g., *.urlhaus.abuse.ch,