This hunt targets adversary behavior where endpoints download files from newly identified malicious URLs flagged by URLhaus as active malware distribution points. Proactively hunting these specific indicators in Azure Sentinel is critical to intercept early-stage infection vectors before they establish persistence or exfiltrate sensitive data across the organization.
Threat: malware_download Total URLs: 4 Active URLs: 4
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://103.179.240.227:58666/i | online | malware_download | 2026-06-30 |
hxxp://163.142.92.113:56949/i | online | malware_download | 2026-06-30 |
hxxp://103.179.240.227:58666/bin.sh | online | malware_download | 2026-06-30 |
hxxp://61.53.95.238:50605/i | online | malware_download | 2026-06-30 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["163.142.92.113", "61.53.95.238", "103.179.240.227"]);
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(["163.142.92.113", "61.53.95.238", "103.179.240.227"]);
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 four specific false positive scenarios for the URLhaus: malware_download detection rule in an enterprise environment, along with suggested filters or exclusions:
Antivirus Definition Updates via Vendor Portals
*.crowdstrike.com, *.update.microsoft.com) and the user agent string contains the specific AV product name (e.g., CrowdStrike Falcon Sensor or Microsoft Defender).Automated Software Patching via Configuration Management Tools
svc-ansible, SCCM-System) and destination URLs ending in common package extensions (.msi, .exe, .zip) hosted on trusted infrastructure domains (e.g., github.com, chocolatey.org).IT Admin Manual Downloads from Trusted Partner Portals