This detection rule identifies network traffic connecting to known Mirai botnet command-and-control URLs, signaling potential IoT device compromise or lateral movement by adversaries leveraging this malware family. Proactive hunting for these indicators within Azure Sentinel is critical to rapidly isolate infected endpoints and prevent the propagation of large-scale distributed denial-of-service (DDoS) attacks before they impact broader infrastructure.
Threat: mirai Total URLs: 9 Active URLs: 8
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://105.184.183.213:58987/i | online | malware_download | 2026-07-25 |
hxxp://77.247.88.82:40510/bin.sh | online | malware_download | 2026-07-25 |
hxxp://31.56.209.70/nz.sh | online | malware_download | 2026-07-25 |
hxxp://129.121.110.105/UlX | online | malware_download | 2026-07-25 |
hxxp://129.121.110.105/ANmR | online | malware_download | 2026-07-25 |
hxxp://129.121.110.105/PMw | online | malware_download | 2026-07-25 |
hxxp://129.121.110.105/WAu | online | malware_download | 2026-07-25 |
hxxp://129.121.110.105/0aYd | online | malware_download | 2026-07-25 |
hxxp://46.159.123.188:46944/bin.sh | offline | malware_download | 2026-07-25 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["129.121.110.105", "77.247.88.82", "105.184.183.213", "31.56.209.70"]);
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(["129.121.110.105", "77.247.88.82", "105.184.183.213", "31.56.209.70"]);
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 and corresponding filters for the URLhaus: mirai Malicious URLs detection rule in an enterprise environment:
Scenario: IoT Device Firmware Updates via Vendor Portals
firmware.cisco.com, update.ui.com) or exclude traffic originating from the dedicated “IoT VLAN” subnet (e.g., 10.50.20.0/24) where these devices reside, provided they are managed by the asset inventory team.Scenario: Scheduled Security Scanning and Vulnerability Assessment
192.168.10.5 for Nessus) and filter out traffic occurring during defined maintenance windows (e.g., 02:00–04:00 UTC daily) when these scheduled jobs run.Scenario: Cloud Backup and Synchronization Agents