This hunt targets adversary behavior where IoT devices communicate with known Mirai-associated malicious URLs to establish botnet membership and prepare for coordinated DDoS attacks. Proactively hunting for these connections in Azure Sentinel is critical to identify compromised endpoints before they are leveraged as part of a larger, resource-draining attack infrastructure.
Threat: mirai Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://105.224.109.82:60337/i | online | malware_download | 2026-07-15 |
hxxp://119.178.242.230:38056/i | online | malware_download | 2026-07-15 |
hxxp://119.178.242.230:38056/bin.sh | online | malware_download | 2026-07-15 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["119.178.242.230", "105.224.109.82"]);
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(["119.178.242.230", "105.224.109.82"]);
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 in an enterprise environment, along with recommended filters or exclusions:
IoT Firmware Update Scans by Management Platforms
10.x.x.x or specific VLANs dedicated to Device Management).Scheduled Vulnerability Assessment Jobs
scanner-01.corp.local) during their defined maintenance windows (e.g., 02:00–04:00 UTC).Security Information and Event Management (SIEM) Threat Intelligence Feeds