This detection identifies adversaries leveraging known malicious URLs to distribute malware downloads, a tactic often used in initial access or supply chain compromise scenarios. Proactively hunting for these indicators within Azure Sentinel is critical to intercept early-stage infections before they propagate across endpoints and exfiltrate sensitive data.
Threat: malware_download Total URLs: 4 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://60.18.11.118:36365/i | offline | malware_download | 2026-08-10 |
hxxp://60.18.11.118:36365/bin.sh | online | malware_download | 2026-08-10 |
hxxp://112.247.84.112:59435/i | online | malware_download | 2026-08-10 |
hxxp://110.36.11.225:7001/bin.sh | offline | malware_download | 2026-08-10 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["112.247.84.112", "60.18.11.118"]);
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(["112.247.84.112", "60.18.11.118"]);
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 detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Antivirus Definition Updates via Cloud Repositories
*.crowdstrike.com, *.microsoft.com, updates.symantec.com) or exclude traffic originating from specific Service Accounts used by these AV agents (e.g., svc-crowdstrike-updater).Scheduled Software Patching and Deployment Jobs
10.20.50.x) or filter out URLs containing specific deployment signatures like /packages/ or /deployments/.CI/CD Pipeline Artifact Retrieval