This hunt targets adversary behavior where IoT devices or internal hosts communicate with known Mirai botnet command-and-control infrastructure via specific malicious URLs identified by URLhaus. Proactively hunting for these connections in Azure Sentinel is critical to detect early-stage botnet infections and prevent lateral movement before the compromised assets are leveraged for large-scale DDoS attacks.
Threat: mirai Total URLs: 10 Active URLs: 10
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://177.86.229.12:35799/i | online | malware_download | 2026-07-19 |
hxxp://105.225.111.196:49659/bin.sh | online | malware_download | 2026-07-19 |
hxxp://codeinspector.ddns.net/nz.sh | online | malware_download | 2026-07-19 |
hxxp://105.186.198.55:41311/i | online | malware_download | 2026-07-19 |
hxxp://105.224.50.234:45151/i | online | malware_download | 2026-07-19 |
hxxp://101.21.20.154:59328/i | online | malware_download | 2026-07-19 |
hxxp://105.186.198.55:41311/bin.sh | online | malware_download | 2026-07-19 |
hxxp://105.224.50.234:45151/bin.sh | online | malware_download | 2026-07-19 |
hxxp://101.21.20.154:59328/bin.sh | online | malware_download | 2026-07-19 |
hxxp://113.233.224.20:44021/i | online | malware_download | 2026-07-19 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["105.224.50.234", "177.86.229.12", "113.233.224.20", "105.186.198.55", "105.225.111.196", "101.21.20.154", "codeinspector.ddns.net"]);
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(["105.224.50.234", "177.86.229.12", "113.233.224.20", "105.186.198.55", "105.225.111.196", "101.21.20.154", "codeinspector.ddns.net"]);
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, tailored for an enterprise environment:
IoT Device Firmware Updates via Cloud Repositories
*.meraki.com, *.honeywell.com) and restrict the rule to exclude traffic originating from the dedicated IoT VLAN subnet (10.x.x.0/24).Scheduled Vulnerability Scans by Security Appliances
192.168.50.10 for Nessus) and filter out HTTP GET requests where the User-Agent string contains “Tenable” or “Qualys”.Automated Backup Jobs to Cloud Storage Gateways