This detection identifies Mirai malware infections by monitoring for malicious URLs associated with the botnet’s exploitation of IoT devices through default credentials and weak security configurations. A SOC team should proactively hunt for this behavior in Azure Sentinel to rapidly isolate compromised endpoints before they are recruited into a large-scale DDoS attack, thereby preventing widespread network disruption.
Threat: mirai Total URLs: 6 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://103.172.186.165:43638/bin.sh | online | malware_download | 2026-08-14 |
hxxp://179.108.89.220:55094/i | online | malware_download | 2026-08-14 |
hxxp://36.69.88.195:51348/i | online | malware_download | 2026-08-14 |
hxxp://115.203.31.123:48146/i | offline | malware_download | 2026-08-14 |
hxxp://140.237.6.81:41787/i | online | malware_download | 2026-08-14 |
hxxp://114.228.239.251:54062/i | online | malware_download | 2026-08-14 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["179.108.89.220", "114.228.239.251", "36.69.88.195", "140.237.6.81", "103.172.186.165"]);
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(["179.108.89.220", "114.228.239.251", "36.69.88.195", "140.237.6.81", "103.172.186.165"]);
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, including suggested filters and exclusions:
Scenario: Automated Firmware Updates from IoT Vendor Portals
firmware.hikvision.com or update.arlo.com) to check for patches. These URLs may be flagged because the traffic pattern resembles Mirai’s initial reconnaissance phase, where infected bots scan and download payloads from external sources.vendor_update_list.csv.Scenario: Scheduled Asset Discovery by Network Monitoring Tools
192.168.10.5 for the SolarWinds server). In the detection logic, add a condition to suppress alerts where the User-Agent string contains identifiers like “SolarWinds”, “PRTG Network Monitor,” or “Lansweeper Agent.”Scenario: CI/CD Pipeline Artifact Downloads *