This detection rule identifies outbound network traffic to six specific URLs known to host Mirai malware payloads, which adversaries leverage to establish command and control channels or deploy IoT botnet nodes. A SOC team should proactively hunt for these indicators within Azure Sentinel to rapidly isolate compromised devices before they propagate lateral movement or initiate large-scale distributed denial-of-service attacks across the organization’s infrastructure.
Threat: mirai Total URLs: 6 Active URLs: 6
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://77.90.185.66/mirai.arm7 | online | malware_download | 2026-08-11 |
hxxp://77.90.185.66/mirai.mpsl | online | malware_download | 2026-08-11 |
hxxp://77.90.185.66/mirai.arm | online | malware_download | 2026-08-11 |
hxxp://77.90.185.66/wget | online | malware_download | 2026-08-11 |
hxxp://77.90.185.66/mirai.arm5 | online | malware_download | 2026-08-11 |
hxxp://77.90.185.66/mirai.mips | online | malware_download | 2026-08-11 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["77.90.185.66"]);
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(["77.90.185.66"]);
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, along with suggested filters and exclusions tailored for an enterprise environment:
IoT Firmware Update Scans by Network Appliances
urlhaus.abuse.ch endpoints that match the rule’s URL patterns.10.20.50.x, 192.168.100.x) and specific process names such as panorama.exe or meraki-cloud-agent.Scheduled Security Posture Assessments by EDR Agents
FalconSensor.exe, MsMpEng.exe) during defined maintenance windows (e.g., 02:00–04:00 UTC) or filter by specific User-Agent strings containing “CrowdStrike” or “Microsoft Defender”.Automated Vulnerability Scanning of External Assets