This detection rule identifies adversary behavior where Mirai malware exploits IoT devices with default credentials to establish command-and-control channels via malicious URLs listed in the URLhaus threat intelligence feed. A SOC team should proactively hunt for this activity within Azure Sentinel because Mirai’s ability to rapidly infect vulnerable IoT infrastructure can lead to large-scale botnet recruitment and potential network-wide disruption if left unaddressed.
Threat: mirai Total URLs: 16 Active URLs: 16
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://160.119.71.134/n2/nw/armv6l | online | malware_download | 2026-08-30 |
hxxp://160.119.71.134/n2/nw/armv7l | online | malware_download | 2026-08-30 |
hxxp://160.119.71.134/n2/nw/mips64b | online | malware_download | 2026-08-30 |
hxxp://160.119.71.134/n2/nw/mips64l | online | malware_download | 2026-08-30 |
hxxp://160.119.71.134/n2/nw/mpsl | online | malware_download | 2026-08-30 |
hxxp://160.119.71.134/n2/nw/m68k | online | malware_download | 2026-08-30 |
hxxp://160.119.71.134/n2/nw/armv5l | online | malware_download | 2026-08-30 |
hxxp://160.119.71.134/n2/nw/sh4 | online | malware_download | 2026-08-30 |
hxxp://160.119.71.134/n2/nw/x86 | online | malware_download | 2026-08-30 |
hxxp://160.119.71.134/n2/nw/x86_64 | online | malware_download | 2026-08-30 |
hxxp://160.119.71.134/n2/nw/aarch64 | online | malware_download | 2026-08-30 |
hxxp://160.119.71.134/n2/nw/mips | online | malware_download | 2026-08-30 |
hxxp://160.119.71.134/n2/nw/ppc | online | malware_download | 2026-08-30 |
hxxp://160.119.71.134/n2/nw/armv4l | online | malware_download | 2026-08-30 |
hxxp://165.98.243.83:44647/i | online | malware_download | 2026-08-30 |
hxxp://165.98.243.83:44647/bin.sh | online | malware_download | 2026-08-30 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["160.119.71.134", "165.98.243.83"]);
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(["160.119.71.134", "165.98.243.83"]);
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 4 specific false positive scenarios for the URLhaus: mirai Malicious URLs detection rule in an enterprise environment, along with suggested filters and exclusions:
IoT Firmware Update Scans by Network Management Tools
10.20.50.x) and restrict the detection to exclude traffic where the User-Agent string contains specific identifiers like Cisco-DNA, SolarWinds-Scanner, or UniFi-Controller.Scheduled Vulnerability Assessment Scans on IoT Subnets