This detection identifies adversary activity involving traffic to seven specific malicious URLs associated with Mirai botnet campaigns, which are known to compromise IoT devices and initiate large-scale DDoS attacks. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate infected endpoints before they can be leveraged as part of a distributed attack infrastructure or used to exfiltrate sensitive data.
Threat: mirai Total URLs: 7 Active URLs: 6
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://129.121.110.105/4hR | online | malware_download | 2026-07-31 |
hxxp://129.121.110.105/CZk | online | malware_download | 2026-07-31 |
hxxp://129.121.110.105/V9G | online | malware_download | 2026-07-31 |
hxxp://129.121.110.105/aaaE | online | malware_download | 2026-07-31 |
hxxp://129.121.110.105/mmo | online | malware_download | 2026-07-31 |
hxxp://156.226.174.98/all.sh | online | malware_download | 2026-07-31 |
hxxp://hehe.dstat.tech/nova.sh | offline | malware_download | 2026-07-31 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["156.226.174.98", "129.121.110.105"]);
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(["156.226.174.98", "129.121.110.105"]);
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 Device Firmware Updates
10.50.20.0/24) or add the vendor’s update domain (e.g., firmware.cisco.com, update.ui.com) to the allow-list.Scheduled Cloud Backup Jobs
svc-backup-agent) and filter out URLs containing backup-specific path patterns like /api/v1/status or /manifest.xml during defined maintenance windows (e.g., 02:00–04:00 UTC).Endpoint Security Console Polling