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 in Azure Sentinel is critical to rapidly isolate infected endpoints and prevent the propagation of large-scale DDoS attacks before they disrupt core infrastructure.
Threat: mirai Total URLs: 22 Active URLs: 22
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://115.199.254.5:36155/bin.sh | online | malware_download | 2026-08-02 |
hxxp://115.199.254.5:36155/i | online | malware_download | 2026-08-02 |
hxxp://222.139.83.141:42413/i | online | malware_download | 2026-08-02 |
hxxp://222.137.175.111:33777/bin.sh | online | malware_download | 2026-08-02 |
hxxp://103.249.199.3:54200/i | online | malware_download | 2026-08-02 |
hxxp://109.236.44.113:44431/bin.sh | online | malware_download | 2026-08-02 |
hxxp://105.184.58.67:41241/bin.sh | online | malware_download | 2026-08-02 |
hxxp://124.161.116.2:42745/i | online | malware_download | 2026-08-02 |
hxxp://122.195.28.22:33145/i | online | malware_download | 2026-08-02 |
hxxp://193.25.217.70/payloads.sh | online | malware_download | 2026-08-02 |
hxxp://81.225.195.11:51939/bin.sh | online | malware_download | 2026-08-02 |
hxxp://122.233.151.133:41093/bin.sh | online | malware_download | 2026-08-02 |
hxxp://123.157.169.5:34135/bin.sh | online | malware_download | 2026-08-02 |
hxxp://36.100.32.52:39326/i | online | malware_download | 2026-08-02 |
hxxp://122.195.28.22:33145/bin.sh | online | malware_download | 2026-08-02 |
hxxp://122.233.151.133:41093/i | online | malware_download | 2026-08-02 |
hxxp://120.28.197.69:55334/bin.sh | online | malware_download | 2026-08-02 |
hxxp://204.116.34.34:48875/i | online | malware_download | 2026-08-02 |
hxxp://120.28.197.69:55334/i | online | malware_download | 2026-08-02 |
hxxp://110.37.38.176:37259/bin.sh | online | malware_download | 2026-08-02 |
hxxp://122.227.109.194:34120/i | online | malware_download | 2026-08-02 |
hxxp://110.37.38.176:37259/i | online | malware_download | 2026-08-02 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["122.227.109.194", "115.199.254.5", "124.161.116.2", "110.37.38.176", "222.139.83.141", "122.233.151.133", "193.25.217.70", "109.236.44.113", "123.157.169.5", "81.225.195.11", "36.100.32.52", "204.116.34.34", "122.195.28.22", "120.28.197.69", "222.137.175.111", "105.184.58.67", "103.249.199.3"]);
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(["122.227.109.194", "115.199.254.5", "124.161.116.2", "110.37.38.176", "222.139.83.141", "122.233.151.133", "193.25.217.70", "109.236.44.113", "123.157.169.5", "81.225.195.11", "36.100.32.52", "204.116.34.34", "122.195.28.22", "120.28.197.69", "222.137.175.111", "105.184.58.67", "103.249.199.3"]);
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 4 specific false positive scenarios for the URLhaus: Mirai Malicious URLs detection rule in an enterprise environment, along with suggested filters or exclusions:
Automated Firmware Update Scans by IoT Management Platforms
App_Name IN ("Meraki-Cloud-Agent", "UniFi-Controller")) or exclude specific destination IP ranges associated with vendor update servers that are known to trigger this signature.Scheduled Vulnerability Assessment Scans
Source_IP IN (10.20.30.x)) during scheduled maintenance windows (e.g., Time_Window = "Weekends 02:00-04:00 UTC") is bypassed for this specific rule.Cloud Storage and Content Delivery Network (CDN) Caching