This hunt detects adversary behavior where endpoints initiate downloads from known malicious URLs identified by URLhaus, indicating potential initial access or execution of malware payloads. The SOC team should proactively investigate these events in Azure Sentinel to rapidly isolate compromised assets and prevent lateral movement before the downloaded malware establishes persistence on the network.
Threat: malware_download Total URLs: 5 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://182.116.75.200:44990/i | online | malware_download | 2026-07-20 |
hxxp://115.63.50.54:53912/i | online | malware_download | 2026-07-20 |
hxxp://123.14.89.9:46520/i | online | malware_download | 2026-07-20 |
hxxp://113.238.64.130:58713/i | online | malware_download | 2026-07-20 |
hxxp://123.14.89.9:46520/bin.sh | online | malware_download | 2026-07-20 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["113.238.64.130", "123.14.89.9", "182.116.75.200", "115.63.50.54"]);
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(["113.238.64.130", "123.14.89.9", "182.116.75.200", "115.63.50.54"]);
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: malware_download rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Management Software Updates
10.x.x.x or specific Cloudflare IPs used by the vendor) and filter URLs containing paths like /updates/, /packages/, or specific vendor domains (e.g., *.microsoft.com, *.jamfsoftware.com).Scheduled Backup and Archiving Jobs
.zip, .tar, or proprietary archive files which can trigger the malware_download tag if the specific file hash is new to the URLhaus database.svc-veeam-backup) and filter URLs pointing to object storage endpoints that utilize standard secure paths like /api/v1/download or specific bucket names known to the organization.Third-Party Application Patching via WSUS/SCCM