This hypothesis detects adversaries leveraging known malicious URLs to distribute malware downloads, a tactic often used in initial access or command and control phases. Proactively hunting for these specific URLhaus-tagged indicators within Azure Sentinel is critical to intercept early-stage infections before they propagate across the enterprise network.
Threat: malware_download Total URLs: 2 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://115.48.146.85:38169/i | online | malware_download | 2026-08-04 |
hxxp://196.190.133.180:48265/i | offline | malware_download | 2026-08-04 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["115.48.146.85"]);
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(["115.48.146.85"]);
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, including targeted filters and exclusions:
*.microsoft.com, *.kaspersky-labs.com, *.crowdstrike.com) and restrict the rule to trigger only if the destination port is not 443 (HTTPS) or if the file extension is .cab or .exe known for updates./updates or /patches.svc_backup, sync_agent) and whitelist URLs containing cloud storage provider domains such as *.sharepoint.com, *.veeam.com, or *.rubrik.com.