This hunt detects adversary behavior where endpoints initiate downloads from known malicious sources identified by URLhaus to deploy malware payloads within the network. Proactively hunting for these specific indicators in Azure Sentinel is critical because it enables the SOC team to identify and isolate compromised assets before the downloaded malware executes its full attack chain.
Threat: malware_download Total URLs: 11 Active URLs: 9
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://misty-cherry-cea3.uploadsimg.workers.dev/xnrtd | online | malware_download | 2026-07-15 |
hxxps://commercial.great-site.net/img_232527.png | offline | malware_download | 2026-07-15 |
hxxps://misty-cherry-cea3.uploadsimg.workers.dev/OoxAY | online | malware_download | 2026-07-15 |
hxxps://ford.great-site.net/img_034102.png | offline | malware_download | 2026-07-15 |
hxxp://27.124.34.73/8/ndumon.sys | online | malware_download | 2026-07-15 |
hxxp://27.124.34.73/8/1181074577.bin | online | malware_download | 2026-07-15 |
hxxp://27.124.34.73/8/chart.exe | online | malware_download | 2026-07-15 |
hxxp://27.124.34.73/9/45202075.bin | online | malware_download | 2026-07-15 |
hxxp://27.124.34.73/9/chart.exe | online | malware_download | 2026-07-15 |
hxxps://redhiban.cfd/cn/enter/stego_payload.png | online | malware_download | 2026-07-15 |
hxxp://gurdjieff-philadelphia.org/giavoni.net/Faldetuno.dwp | online | malware_download | 2026-07-15 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["misty-cherry-cea3.uploadsimg.workers.dev", "gurdjieff-philadelphia.org", "redhiban.cfd", "27.124.34.73"]);
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", "gurdjieff-philadelphia.org", "redhiban.cfd", "27.124.34.73"]);
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 specific false positive scenarios for the URLhaus: malware_download detection rule in an enterprise environment, including suggested filters and exclusions:
Enterprise Software Update Agents
svc-sccm-updater) or restrict the rule to exclude known vendor domains (e.g., *.microsoft.com, *.jamfsoftware.com, *.oracle.com).Scheduled Backup and Archiving Jobs
Daily_Backup_Integrity_Check) and filter out URLs containing standard backup path patterns (e.g., /backup/, /archive/, or query parameters like ?action=download).IT Administration and Helpdesk Tooling