This detection identifies adversary behavior where IoT devices or network endpoints access known Mirai botnet command-and-control URLs to facilitate initial infection and lateral movement. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised assets before they are recruited into a large-scale botnet capable of launching distributed denial-of-service attacks.
Threat: mirai Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://117.131.92.150:50108/i | online | malware_download | 2026-07-23 |
hxxp://117.131.92.150:50108/bin.sh | online | malware_download | 2026-07-23 |
hxxp://38.21.70.189:51850/i | online | malware_download | 2026-07-23 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["117.131.92.150", "38.21.70.189"]);
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(["117.131.92.150", "38.21.70.189"]);
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:
Scenario: IoT Device Firmware Update Scans
10.50.10.0/24) and exclude URLs containing vendor-specific update paths, such as *.cisco.com/firmware or *.ubnt.com/update.Scenario: Scheduled Vulnerability Scanner Probes
192.168.5.10-15) and filter out requests where the User-Agent string contains keywords like Tenable, Qualys, or Rapid7.Scenario: Admin Cloud Backup and Sync Operations