This hunt detects adversaries leveraging known malicious URLs to distribute malware downloads that may evade standard static signature detection by utilizing newly identified threat intelligence feeds. Proactively hunting for these specific URLhaus-tagged indicators in Azure Sentinel allows the SOC team to identify early-stage infection vectors and mitigate potential lateral movement before widespread compromise occurs.
Threat: malware_download Total URLs: 3 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://77.236.74.65:43745/i | online | malware_download | 2026-07-24 |
hxxp://77.236.74.65:43745/bin.sh | online | malware_download | 2026-07-24 |
hxxp://123.189.138.169:50295/i | offline | malware_download | 2026-07-24 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["77.236.74.65"]);
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(["77.236.74.65"]);
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 rule, including targeted filters and exclusions:
Automated Software Update Agents: Enterprise endpoints running background update services often trigger this rule when downloading patches or new versions. For instance, Microsoft System Center Configuration Manager (SCCM) or WSUS clients frequently fetch installer packages from Microsoft’s CDN URLs (go.microsoft.com, update.microsoft.com) which may be flagged as “malware_download” due to high volume and dynamic content signatures.
NT SERVICE\WUAuserv or specific SCCM client processes) accessing Microsoft’s official CDN domains (*.microsoft.com, *.windowsupdate.com).Cloud Backup and Synchronization Tools: Managed file synchronization tools like Microsoft OneDrive for Business or Google Workspace Drive often generate download events when users sync large files or restore versions. These tools frequently utilize dynamic URLs that URLhaus might classify as suspicious due to the nature of file transfer protocols, even though the content is benign corporate data.
*.sharepoint.com, *.googleusercontent.com).Scheduled Antivirus Definition Updates: The endpoint protection suite itself, such as CrowdStrike Falcon or SentinelOne, runs scheduled jobs to download the latest threat intelligence feeds and definition updates. These downloads often hit external repositories that URLhaus tags as “malware_download” because they involve downloading executable signature files from security vendors’ public endpoints.
falcon.sys, `Sentinel