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. Proactively hunting for these specific indicators in Azure Sentinel is critical to rapidly identify and isolate compromised assets before they establish persistence or exfiltrate sensitive data.
Threat: malware_download Total URLs: 4 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://115.62.58.252:55568/i | online | malware_download | 2026-07-14 |
hxxp://209.54.101.188/144/everydaynightiamworkingforbestthingstocome.js | online | malware_download | 2026-07-14 |
hxxp://64.22.81.244/style.exe | offline | malware_download | 2026-07-14 |
hxxp://42.86.112.79:56396/bin.sh | online | malware_download | 2026-07-14 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["209.54.101.188", "115.62.58.252", "42.86.112.79"]);
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(["209.54.101.188", "115.62.58.252", "42.86.112.79"]);
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 and exclusions:
Enterprise Antivirus Definition Updates via Cloud Repositories
malware_download due to shared IP reputation issues or transient heuristic triggers.*.update.microsoft.com, *.crowdstrike.com) and exclude traffic originating from the specific service accounts used by the AV management console during scheduled maintenance windows (e.g., 02:00–04:00 UTC).Software Deployment via Configuration Management Tools
download.microsoft.com, mirror.centos.org). Additionally, filter out alerts where the user agent string matches known deployment tools (e.g., containing “SCCM”, “Ansible”, or