This hunt detects adversary behavior where IoT devices or network endpoints communicate with known Mirai botnet command-and-control servers via specific malicious URLs identified by URLhaus. The SOC team should proactively hunt for these indicators in Azure Sentinel to identify early-stage infections and prevent lateral movement before the botnet can orchestrate large-scale DDoS attacks against critical infrastructure.
Threat: mirai Total URLs: 6 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://183.92.205.45:55257/i | online | malware_download | 2026-07-20 |
hxxp://183.92.205.45:55257/bin.sh | online | malware_download | 2026-07-20 |
hxxp://112.252.222.187:37837/i | online | malware_download | 2026-07-20 |
hxxp://112.252.222.187:37837/bin.sh | online | malware_download | 2026-07-20 |
hxxp://82.86.65.140:45484/bin.sh | online | malware_download | 2026-07-20 |
hxxp://105.186.224.110:60709/i | offline | malware_download | 2026-07-20 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["82.86.65.140", "112.252.222.187", "183.92.205.45"]);
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(["82.86.65.140", "112.252.222.187", "183.92.205.45"]);
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 in an enterprise environment, along with suggested filters or exclusions:
Automated Firmware Update Scans by Network Management Tools
svc-solarwinds, cisco-dna) and destination ports associated with management protocols (HTTP/HTTPS) on the network management subnet range.Scheduled Vulnerability Scans by Security Appliances
User-Agent strings used by these scanners (e.g., containing “Tenable.Nessus” or “QualysAgent”).IT Admin Manual Investigation of IoT Device Health