This detection identifies network traffic communicating with known Mirai botnet command-and-control URLs to uncover potential IoT device infections and lateral movement. Proactive hunting in Azure Sentinel is critical because Mirai variants can rapidly compromise unpatched devices, leading to large-scale DDoS attacks or data exfiltration before traditional signature-based alerts trigger.
Threat: mirai Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://222.243.95.50:41564/i | online | malware_download | 2026-07-29 |
hxxp://222.243.95.50:41564/bin.sh | online | malware_download | 2026-07-29 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["222.243.95.50"]);
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(["222.243.95.50"]);
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 5 specific false positive scenarios for the URLhaus: mirai Malicious URLs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Automated Firmware Updates via Cloud Repositories
10.50.x.x) destined for trusted vendor domains (e.g., *.cisco.com, *.ubnt.com). Alternatively, filter out URLs where the HTTP User-Agent string contains keywords like “FirmwareUpdate” or “AutoUpgrade”.Scenario: Scheduled Security Scans by Internal Vulnerability Management Tools
192.168.10.50-60). Additionally, filter out events where the HTTP method is HEAD or GET and the response code is 200 OK, as these often represent successful discovery rather than malicious interaction.Scenario: Cloud Backup Agents Accessing Public Storage Buckets