This detection identifies Mirai botnet activity where adversaries exploit IoT devices with default credentials to establish command-and-control channels via malicious URLs. Proactive hunting in Azure Sentinel is critical because Mirai’s rapid propagation through unsecured network perimeters can quickly escalate into large-scale DDoS attacks or lateral movement threats that require immediate containment.
Threat: mirai Total URLs: 12 Active URLs: 12
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://196.189.3.1:47844/i | online | malware_download | 2026-08-23 |
hxxp://182.241.136.218:42856/bin.sh | online | malware_download | 2026-08-23 |
hxxp://196.189.3.1:47844/bin.sh | online | malware_download | 2026-08-23 |
hxxp://182.241.136.218:42856/i | online | malware_download | 2026-08-23 |
hxxp://124.234.246.166:55376/i | online | malware_download | 2026-08-23 |
hxxp://114.227.224.253:36869/bin.sh | online | malware_download | 2026-08-23 |
hxxp://61.243.238.134:46379/bin.sh | online | malware_download | 2026-08-23 |
hxxp://123.97.30.141:52890/bin.sh | online | malware_download | 2026-08-23 |
hxxp://114.227.224.253:36869/i | online | malware_download | 2026-08-23 |
hxxp://114.226.31.25:56290/i | online | malware_download | 2026-08-23 |
hxxp://123.97.30.141:52890/i | online | malware_download | 2026-08-23 |
hxxp://182.244.41.109:53440/i | online | malware_download | 2026-08-23 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["182.241.136.218", "124.234.246.166", "114.226.31.25", "114.227.224.253", "61.243.238.134", "182.244.41.109", "196.189.3.1", "123.97.30.141"]);
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(["182.241.136.218", "124.234.246.166", "114.226.31.25", "114.227.224.253", "61.243.238.134", "182.244.41.109", "196.189.3.1", "123.97.30.141"]);
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 a legitimate enterprise environment involving IoT and network scanning activities:
IoT Device Firmware Update Checks
*.cisco.com, *.ubnt.com) and restrict the rule trigger to only apply when the User-Agent string does not match known device firmware agents.Scheduled Network Vulnerability Scans
10.50.20.0/24 for Nessus servers) or filter out alerts where the source port is a standard scanner ephemeral range during defined maintenance windows (e.g., 02:00–04:00 UTC).Default Credential Discovery by IT Automation Scripts