This detection rule identifies network traffic connecting to five specific URLs known to host Mirai botnet malware, which adversaries leverage to compromise IoT devices and establish command-and-control channels. A proactive hunt is essential in Azure Sentinel to rapidly isolate infected endpoints before they can propagate lateral attacks or launch large-scale DDoS campaigns against the organization’s infrastructure.
Threat: mirai Total URLs: 5 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://103.77.246.150/AGbot.armv6l | online | malware_download | 2026-08-27 |
hxxp://103.77.246.150/AGbot.armv7l | online | malware_download | 2026-08-27 |
hxxp://103.77.246.150/AGbot.armv5l | online | malware_download | 2026-08-27 |
hxxp://103.77.246.150/AGbot.armv4l | online | malware_download | 2026-08-27 |
hxxp://103.77.246.150/all.sh | online | malware_download | 2026-08-27 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["103.77.246.150"]);
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(["103.77.246.150"]);
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, including targeted filters and exclusions suitable for an enterprise environment:
Scenario: Scheduled Firmware Update Scans by IoT Management Platforms
User-Agent header matches the vendor’s signature (e.g., Meraki-Update-Agent or UniFi-Firmware-Sync).Scenario: Automated Vulnerability Scanning by Security Appliances
Scenario: Cloud Backup Agents Syncing with Vendor Repositories