This hunt targets adversary behavior where IoT devices or internal workstations communicate with known Mirai botnet command-and-control infrastructure via specific malicious URLs identified by URLhaus. Proactively hunting for these indicators in Azure Sentinel is critical to detect early-stage botnet infections before they escalate into large-scale DDoS attacks or lateral movement campaigns within the network.
Threat: mirai Total URLs: 4 Active URLs: 4
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://110.37.127.135:36933/bin.sh | online | malware_download | 2026-07-11 |
hxxp://112.254.156.154:45877/bin.sh | online | malware_download | 2026-07-11 |
hxxp://41.216.189.92/3.sh | online | malware_download | 2026-07-11 |
hxxp://41.216.189.92/2.sh | online | malware_download | 2026-07-11 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["112.254.156.154", "41.216.189.92", "110.37.127.135"]);
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(["112.254.156.154", "41.216.189.92", "110.37.127.135"]);
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 for the URLhaus: mirai Malicious URLs detection rule in an enterprise environment, along with suggested filters or exclusions:
Automated Firmware Update Scans by Network Management Systems
*.cisco.com, *.fortinet.net).Endpoint Protection Signature Synchronization
C:\Program Files\CrowdStrike\csfalcon.exe or MsMpEng.exe) and filter by the destination port typically used for management updates (often 443 to specific CDN ranges).IT Asset Discovery and Vulnerability Scanning Jobs