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. Proactively hunting for these indicators in Azure Sentinel is critical to rapidly isolate infected endpoints before they are recruited into a large-scale botnet capable of launching distributed denial-of-service (DDoS) attacks against internal infrastructure.
Threat: mirai Total URLs: 10 Active URLs: 9
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://171.38.221.210:59639/i | online | malware_download | 2026-08-05 |
hxxp://105.186.85.41:52445/bin.sh | online | malware_download | 2026-08-05 |
hxxp://110.37.56.122:48415/i | online | malware_download | 2026-08-05 |
hxxp://210.208.110.147:50936/i | online | malware_download | 2026-08-05 |
hxxp://110.37.56.122:48415/bin.sh | online | malware_download | 2026-08-05 |
hxxp://222.219.74.184:52755/bin.sh | online | malware_download | 2026-08-05 |
hxxp://210.208.110.147:50936/bin.sh | online | malware_download | 2026-08-05 |
hxxp://106.40.240.38:34324/i | online | malware_download | 2026-08-05 |
hxxp://106.40.240.38:34324/bin.sh | online | malware_download | 2026-08-05 |
hxxp://31.77.227.128/bins/cat.sh | offline | malware_download | 2026-08-05 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["171.38.221.210", "210.208.110.147", "105.186.85.41", "222.219.74.184", "110.37.56.122", "106.40.240.38"]);
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(["171.38.221.210", "210.208.110.147", "105.186.85.41", "222.219.74.184", "110.37.56.122", "106.40.240.38"]);
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 |
IoT Firmware Update via Scheduled Task
Source Host (e.g., IoT-Update-Scheduler) and the Destination URL containing known vendor domains (e.g., *.meraki.com, *.ubnt.com). Alternatively, add these specific URLs to a “Known Good” allowlist within the detection logic.Security Information Management (SIM) Dashboard Refresh
10.20.30.5) where the User Agent string contains “Splunk-Collector” or “Sentinel-Agent”.DevOps CI/CD Pipeline Artifact Retrieval