This hunt targets adversary behavior where endpoints initiate downloads from known malicious URLs identified by URLhaus, indicating potential initial access or command and control activities via compromised web resources. Proactively hunting for these specific indicators in Azure Sentinel is critical to rapidly identify and contain malware infections before they establish persistence or exfiltrate sensitive data across the organization’s cloud infrastructure.
Threat: malware_download Total URLs: 6 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://27.37.101.136:56949/i | online | malware_download | 2026-06-29 |
hxxp://09c1d5c3-1a6e-4c05-8e4e-eff75c6b5dd6.filesusr.com/ugd/09c1d5_f29a3b493ad342199c678fc221f44af7.txt | offline | malware_download | 2026-06-29 |
hxxps://digital-magicians.com/digital-magicians.zip | online | malware_download | 2026-06-29 |
hxxps://mineiicancry25june2026.blogspot.com//nilapila.docx.psd.pdf.in.sys.nilapila.docx.psd.pdf.in.sys | offline | malware_download | 2026-06-29 |
hxxp://mineiicancry25june2026.blogspot.com/atom.xml | offline | malware_download | 2026-06-29 |
hxxp://113.239.220.232:50902/i | online | malware_download | 2026-06-29 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["digital-magicians.com", "113.239.220.232", "27.37.101.136"]);
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(["digital-magicians.com", "113.239.220.232", "27.37.101.136"]);
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, including suggested filters and exclusions:
Automated Patch Management Scans
download.microsoft.com or updates.adobe.com) to check for the latest definitions and patches. URLhaus may flag these high-volume, generic download endpoints as “malware_download” due to their broad usage patterns across the internet, even when no actual malware is present on the specific enterprise host.MsMpEng.exe, CcmExec.exe) and restrict the rule trigger to only fire if the destination URL does not belong to approved vendor domains (e.g., *.microsoft.com, *.adobe.com).Scheduled Software Deployment via SCCM/Intune
IT_Operations or Service_Accounts security group and the **Destination