This hunt hypothesis targets Mirai malware infections that leverage malicious URLs to compromise IoT devices with weak security configurations, transforming them into botnet nodes capable of executing large-scale DDoS attacks. A SOC team should proactively hunt for these indicators in Azure Sentinel to identify early-stage compromises before they escalate into widespread network disruptions and service outages.
Threat: mirai Total URLs: 9 Active URLs: 9
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://113.221.72.124:57788/i | online | malware_download | 2026-08-01 |
hxxp://105.186.235.17:39883/i | online | malware_download | 2026-08-01 |
hxxp://123.14.231.53:49615/i | online | malware_download | 2026-08-01 |
hxxp://185.248.14.255:39057/i | online | malware_download | 2026-08-01 |
hxxp://220.208.179.252:36276/i | online | malware_download | 2026-08-01 |
hxxp://105.184.102.34:57707/i | online | malware_download | 2026-08-01 |
hxxp://115.51.95.135:41991/i | online | malware_download | 2026-08-01 |
hxxp://121.231.142.133:54062/i | online | malware_download | 2026-08-01 |
hxxp://223.151.76.113:36188/i | online | malware_download | 2026-08-01 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["121.231.142.133", "105.184.102.34", "220.208.179.252", "115.51.95.135", "113.221.72.124", "185.248.14.255", "105.186.235.17", "223.151.76.113", "123.14.231.53"]);
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(["121.231.142.133", "105.184.102.34", "220.208.179.252", "115.51.95.135", "113.221.72.124", "185.248.14.255", "105.186.235.17", "223.151.76.113", "123.14.231.53"]);
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 5 specific false positive scenarios for the URLhaus: mirai Malicious URLs detection rule, tailored for an enterprise environment with suggested filters and exclusions:
IoT Device Firmware Auto-Updates via Vendor Repositories
firmware.cisco.com or similar domains.*.cisco.com, *.ubnt.com) to a “Trusted Vendor Domains” list in the SIEM correlation engine.Scheduled Backup Jobs for Network Infrastructure
svc-net-backup) during defined maintenance windows (e.g., 02:00–04:00 UTC) or exclude traffic destined for known cloud storage endpoints (*.amazonaws.com, *.azureedge.net).**Vulnerability Scanning Tools Probing