This detection identifies Mirai malware activity that exploits IoT device vulnerabilities through malicious URL interactions to establish command-and-control channels or propagate botnet infections. A proactive hunt is essential in Azure Sentinel to rapidly isolate compromised IoT assets before they are leveraged for large-scale DDoS attacks or lateral movement within the network.
Threat: mirai Total URLs: 6 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://129.121.110.105/c2lv | online | malware_download | 2026-07-28 |
hxxp://129.121.110.105/aKmh | online | malware_download | 2026-07-28 |
hxxp://129.121.110.105/0f9 | online | malware_download | 2026-07-28 |
hxxp://129.121.110.105/Xvg | online | malware_download | 2026-07-28 |
hxxp://129.121.110.105/jST0 | offline | malware_download | 2026-07-28 |
hxxp://105.184.156.91:60979/bin.sh | online | malware_download | 2026-07-28 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["129.121.110.105", "105.184.156.91"]);
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", "105.184.156.91"]);
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 3-5 specific false positive scenarios for the URLhaus: mirai Malicious URLs detection rule, tailored for an enterprise environment:
Scenario: Automated IoT Firmware Update Checks
10.50.20.0/24) and whitelist specific vendor update domains such as update.axis.com or firmware.yealink.com.Scenario: Network Security Scanning by Internal Tools
192.168.10.5 for Nessus Manager) when the destination URL matches known Mirai C2 patterns, provided the HTTP status code is 200 OK.Scenario: Cloud-Based IoT Management Platform Synchronization