This detection rule identifies Mirai botnet activity by flagging traffic to known malicious URLs that exploit IoT device vulnerabilities to establish command-and-control channels for potential DDoS campaigns. Proactively hunting for these indicators in Azure Sentinel is critical to rapidly isolate compromised endpoints before they are recruited into a larger botnet capable of disrupting network availability.
Threat: mirai Total URLs: 11 Active URLs: 11
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://170.205.31.25/lkxstress.sh | online | malware_download | 2026-08-09 |
hxxp://lol.exodustrala.dpdns.org/lkxstress.sh | online | malware_download | 2026-08-09 |
hxxp://36.69.80.149:33303/bin.sh | online | malware_download | 2026-08-09 |
hxxp://36.69.80.149:33303/i | online | malware_download | 2026-08-09 |
hxxp://180.252.209.203:43259/i | online | malware_download | 2026-08-09 |
hxxp://120.28.139.212:38655/i | online | malware_download | 2026-08-09 |
hxxp://36.48.41.248:36948/i | online | malware_download | 2026-08-09 |
hxxp://180.252.209.203:43259/bin.sh | online | malware_download | 2026-08-09 |
hxxp://125.43.0.79:34827/i | online | malware_download | 2026-08-09 |
hxxp://179.108.89.220:43996/i | online | malware_download | 2026-08-09 |
hxxp://117.24.218.134:45145/i | online | malware_download | 2026-08-09 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["lol.exodustrala.dpdns.org", "170.205.31.25", "36.48.41.248", "120.28.139.212", "36.69.80.149", "125.43.0.79", "117.24.218.134", "179.108.89.220", "180.252.209.203"]);
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(["lol.exodustrala.dpdns.org", "170.205.31.25", "36.48.41.248", "120.28.139.212", "36.69.80.149", "125.43.0.79", "117.24.218.134", "179.108.89.220", "180.252.209.203"]);
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 within an enterprise environment, along with suggested filters and exclusions:
IoT Firmware Update Scans by Network Management Tools
solarwinds-ncm-scan) and Destination Port 80/443. Additionally, filter out traffic where the HTTP User-Agent string contains specific identifiers for known management tools (e.g., User-Agent: SolarWinds-Network-Manager).Scheduled Cloud Backup Jobs Accessing Public CDN Nodes
svc-veeam-backup) accessing known trusted CDNs. Use a whitelist of specific Destination IP Ranges associated with the enterprise’s primary CDN provider to bypass the URL reputation check for these scheduled jobs.