This detection identifies potential Mirai botnet infections by monitoring network traffic against a curated set of three known malicious URLs associated with IoT device compromise. A proactive hunt is essential in Azure Sentinel to rapidly isolate infected endpoints before adversaries leverage these devices for large-scale DDoS attacks or lateral movement within the enterprise network.
Threat: mirai Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://115.58.177.86:33235/i | online | malware_download | 2026-08-10 |
hxxp://36.48.28.98:35726/i | online | malware_download | 2026-08-10 |
hxxp://115.58.177.86:33235/bin.sh | online | malware_download | 2026-08-10 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["36.48.28.98", "115.58.177.86"]);
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(["36.48.28.98", "115.58.177.86"]);
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, along with targeted filters and exclusions suitable for an enterprise environment:
Scenario: Automated Firmware Update Scans by IoT Management Platforms
*.meraki.com, *.ubnt.com). Additionally, filter out HTTP GET requests where the User-Agent string contains keywords like “FirmwareUpdate” or “DeviceManager”.Scenario: Scheduled Security Baseline Scans by Endpoint Protection Agents
HostGroup: Endpoint_Scan_Orchestrator). Filter based on the process name of the scanning agent (e.g., C:\Program Files\CrowdStrike\csagent.exe) and exclude alerts where the HTTP method is GET with a status code of 200 OK.