This hunt targets adversary behavior where endpoints initiate downloads from known malicious URLs identified by URLhaus, indicating a potential initial access or command and control phase of an attack. Proactively hunting for these specific malware_download indicators in Azure Sentinel is critical to rapidly isolate compromised assets before the downloaded payloads can execute and establish persistence within the network.
Threat: malware_download Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://202.1.26.13:34091/i | online | malware_download | 2026-07-07 |
hxxp://175.146.227.235:55858/bin.sh | online | malware_download | 2026-07-07 |
hxxp://116.139.183.228:43439/i | online | malware_download | 2026-07-07 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["116.139.183.228", "202.1.26.13", "175.146.227.235"]);
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(["116.139.183.228", "202.1.26.13", "175.146.227.235"]);
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, along with suggested filters or exclusions:
Automated Software Update Agents: Legitimate endpoint management tools like Microsoft Endpoint Configuration Manager (MECM/SCCM) or Jamf Pro frequently download update packages from vendor repositories that may be flagged as “malware_download” due to the sheer volume of executable payloads.
*.microsoft.com, updates.jamfsoftware.com) when the user agent string contains identifiers for these agents (e.g., CCMExec, JamfProAgent).Scheduled Backup and Archive Jobs: Enterprise backup solutions such as Veeam Backup & Replication or Commvault often download large metadata files, configuration scripts, or temporary archive chunks from cloud storage endpoints. These downloads can trigger the rule if the destination URL is categorized broadly under software distribution.
*.blob.core.windows.net or *.s3.amazonaws.com.IT Administration and Patch Deployment: System administrators using tools like Ansible, Chef, or Puppet often execute scheduled jobs that pull configuration manifests, new agent binaries, or security policy definitions from internal artifact repositories (e.g., Nexus Repository Manager or Artifactory) which may be hosted on public-facing URLs.
svc_ansible, admin_puppet) and the destination URL