This detection identifies network traffic connecting to known Mirai botnet command-and-control URLs, signaling potential IoT device compromise and active participation in large-scale DDoS campaigns. Proactive hunting for these indicators within Azure Sentinel is critical to rapidly isolate infected endpoints before they can propagate lateral threats or exhaust bandwidth resources across the enterprise infrastructure.
Threat: mirai Total URLs: 8 Active URLs: 8
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://116.68.162.210:40108/i | online | malware_download | 2026-07-24 |
hxxp://116.68.162.210:40108/bin.sh | online | malware_download | 2026-07-24 |
hxxp://103.172.186.156:55095/i | online | malware_download | 2026-07-24 |
hxxp://103.172.186.156:55095/bin.sh | online | malware_download | 2026-07-24 |
hxxp://105.184.108.47:44705/i | online | malware_download | 2026-07-24 |
hxxp://105.184.108.47:44705/bin.sh | online | malware_download | 2026-07-24 |
hxxp://196.189.35.172:36765/i | online | malware_download | 2026-07-24 |
hxxp://105.224.82.249:42805/i | online | malware_download | 2026-07-24 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["105.184.108.47", "103.172.186.156", "116.68.162.210", "196.189.35.172", "105.224.82.249"]);
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(["105.184.108.47", "103.172.186.156", "116.68.162.210", "196.189.35.172", "105.224.82.249"]);
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, along with targeted filters and exclusions suitable for an enterprise environment:
IoT Device Firmware Updates via Cloud Repositories
10.50.40.0/24) or exclude known vendor domains such as *.cisco.com, *.ubnt.com, and *.aruba-networks.com from the rule logic if their update traffic matches the Mirai URL signature.Automated Security Scanner Probing
192.168.50.10 for Tenable) or filter out events where the source user agent contains keywords like “Nessus”, “Qualys”, or “Rapid7”.Scheduled Backup and Replication Jobs