This hunt targets adversary behavior where endpoints initiate downloads from known malicious URLs identified by URLhaus as delivering malware payloads. Proactively hunting for these specific indicators in Azure Sentinel is critical to intercept early-stage infection vectors before they establish persistence or exfiltrate sensitive data across the cloud environment.
Threat: malware_download Total URLs: 4 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://pub-b156ef7b8e9141738331d7cd7868c327.r2.dev/output.bat | online | malware_download | 2026-07-08 |
hxxps://i.ibb.co/3ynnQmxB/c1A.png | online | malware_download | 2026-07-08 |
hxxp://42.86.113.243:40712/i | online | malware_download | 2026-07-08 |
hxxp://91.92.242.236/files-129312398/files/file_02ab507d3ceeda2d.exe | offline | malware_download | 2026-07-08 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["i.ibb.co", "42.86.113.243", "pub-b156ef7b8e9141738331d7cd7868c327.r2.dev"]);
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(["i.ibb.co", "42.86.113.243", "pub-b156ef7b8e9141738331d7cd7868c327.r2.dev"]);
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: malware_download detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Management Agent Updates via Cloud Repositories
*.microsoft.com, *.jamfcloud.com) where the destination port is 443 and the User-Agent header contains the specific agent signature (e.g., Microsoft-Windows-Update-Agent).Scheduled Enterprise Antivirus Definition Syncs
IT Admin Manual Downloads from Trusted Vendor Portals