This hunt detects adversary behavior where endpoints initiate downloads from known malicious URLs identified by URLhaus as sources of active malware distribution. Proactively hunting for these specific download events in Azure Sentinel is critical to rapidly identify and contain potential initial infection vectors before they escalate into widespread compromise across the organization’s cloud infrastructure.
Threat: malware_download Total URLs: 3 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://222.138.103.55:54775/i | offline | malware_download | 2026-07-21 |
hxxp://123.188.214.188:44236/i | online | malware_download | 2026-07-21 |
hxxp://112.248.191.227:55049/i | online | malware_download | 2026-07-21 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["112.248.191.227", "123.188.214.188"]);
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(["112.248.191.227", "123.188.214.188"]);
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 rule in an enterprise environment, along with targeted exclusion strategies:
Endpoint Management Software Updates
.msi, .exe) from the vendor’s CDN, which may be flagged as malware_download by URLhaus due to the high volume of new binaries being distributed globally before they are fully indexed by threat intelligence feeds.*.manage.microsoft.com, *.jamfcloud.com) or specific destination IP ranges associated with the software vendor’s update channels, provided the user agent string contains the device management tool name.Automated Backup and Disaster Recovery Jobs
.backup.com or specific S3 bucket paths used by the enterprise.Third-Party API Integration and Data Ingestion