This hunt detects adversary behavior where IoT devices or internal hosts communicate with known Mirai botnet command-and-control infrastructure via specific malicious URLs identified by URLhaus. The SOC team should proactively investigate these connections in Azure Sentinel to identify early-stage infections and prevent the lateral spread of the Mirai worm across the network before it escalates into a large-scale DDoS event.
Threat: mirai Total URLs: 3 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://27.203.133.108:45640/bin.sh | online | malware_download | 2026-06-28 |
hxxp://94.154.43.87/lll | offline | malware_download | 2026-06-28 |
hxxp://125.160.186.5:58385/i | online | malware_download | 2026-06-28 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["27.203.133.108", "125.160.186.5"]);
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(["27.203.133.108", "125.160.186.5"]);
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 specific false positive scenarios for the URLhaus: mirai Malicious URLs detection rule in an enterprise environment, along with suggested filters or exclusions:
IoT Device Firmware Updates via Vendor Portals
*.meraki.com, *.arubanetworks.com) and restrict alerts to non-standard ports if the traffic is strictly HTTPS (443). Alternatively, whitelist the specific URL paths associated with update manifests (e.g., /api/v1/firmware/check).Scheduled Security Scanner Probes (Tenable/Nessus)
Tenable-Nessus-10.x, NessusAgent) to distinguish them from standard web browser or IoT device traffic.IT Admin Manual Threat Intelligence Research