This detection identifies adversary behavior where IoT devices or network hosts attempt to access known Mirai botnet command-and-control URLs, signaling potential initial infection or active participation in a distributed denial-of-service campaign. A SOC team should proactively hunt for these indicators within Azure Sentinel to rapidly isolate compromised endpoints before they are leveraged as part of a larger botnet infrastructure capable of launching widespread network attacks.
Threat: mirai Total URLs: 16 Active URLs: 16
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://124.6.167.121:45202/i | online | malware_download | 2026-08-29 |
hxxp://120.28.215.129:53744/bin.sh | online | malware_download | 2026-08-29 |
hxxp://119.176.53.238:51432/i | online | malware_download | 2026-08-29 |
hxxp://36.70.227.223:53614/i | online | malware_download | 2026-08-29 |
hxxp://125.166.48.235:58006/bin.sh | online | malware_download | 2026-08-29 |
hxxp://115.206.180.117:48491/i | online | malware_download | 2026-08-29 |
hxxp://103.44.137.13:40456/i | online | malware_download | 2026-08-29 |
hxxp://113.235.59.91:41677/i | online | malware_download | 2026-08-29 |
hxxp://110.186.230.101:55282/bin.sh | online | malware_download | 2026-08-29 |
hxxp://113.221.36.67:33058/i | online | malware_download | 2026-08-29 |
hxxp://31.129.0.57:56485/i | online | malware_download | 2026-08-29 |
hxxp://120.28.194.30:58329/i | online | malware_download | 2026-08-29 |
hxxp://103.125.31.101:56775/bin.sh | online | malware_download | 2026-08-29 |
hxxp://119.176.53.238:51432/bin.sh | online | malware_download | 2026-08-29 |
hxxp://175.30.114.108:44656/i | online | malware_download | 2026-08-29 |
hxxp://113.221.76.194:54955/bin.sh | online | malware_download | 2026-08-29 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["115.206.180.117", "103.125.31.101", "36.70.227.223", "110.186.230.101", "103.44.137.13", "120.28.194.30", "113.221.76.194", "120.28.215.129", "124.6.167.121", "113.235.59.91", "119.176.53.238", "31.129.0.57", "175.30.114.108", "125.166.48.235", "113.221.36.67"]);
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(["115.206.180.117", "103.125.31.101", "36.70.227.223", "110.186.230.101", "103.44.137.13", "120.28.194.30", "113.221.76.194", "120.28.215.129", "124.6.167.121", "113.235.59.91", "119.176.53.238", "31.129.0.57", "175.30.114.108", "125.166.48.235", "113.221.36.67"]);
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:
IoT Device Firmware Updates via Vendor Portals
*.cisco.com, *.arubanetworks.com) or restrict the detection to exclude traffic originating from dedicated IoT VLAN subnets where these devices reside.Scheduled Vulnerability Scanning Jobs
svc-nessus, qualys-agent) or filter out URLs where the HTTP User-Agent string contains specific identifiers like “Nessus”, “Qualys”, or “Rapid7”.Cloud Backup and Synchronization Agents