This hunt targets 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 contain early-stage infections before they establish persistence or spread laterally across the organization’s cloud infrastructure.
Threat: malware_download Total URLs: 4 Active URLs: 4
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://sesaddf.kesug.com/img_084800.png | online | malware_download | 2026-07-16 |
hxxps://misty-cherry-cea3.uploadsimg.workers.dev/tIIXe | online | malware_download | 2026-07-16 |
hxxp://123.11.10.128:48314/i | online | malware_download | 2026-07-16 |
hxxp://123.11.10.128:48314/bin.sh | online | malware_download | 2026-07-16 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["misty-cherry-cea3.uploadsimg.workers.dev", "sesaddf.kesug.com", "123.11.10.128"]);
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(["misty-cherry-cea3.uploadsimg.workers.dev", "sesaddf.kesug.com", "123.11.10.128"]);
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 Protection Policy Updates via Microsoft Update Catalog
update.microsoft.com or a specific CDN endpoint. URLhaus may flag these high-volume, frequently changing download URLs as “malware_download” due to their association with executable payloads, even though they are benign.*.update.microsoft.com, *.officecdn.microsoft.com, and the specific EDR vendor’s update domain (e.g., *.crowdstrike.com) when the user agent contains “Windows Update” or the specific EDR service name.Automated Patch Management via SCCM/Intune
NT SERVICE\SCCM) associated with patch management processes. Additionally, filter out URLs containing path segments like /ccmexec, /intune, or /distribution within internal IP ranges.Software Deployment via Chocolatey or Ansible