This detection identifies adversaries leveraging known malicious URLs to distribute malware downloads, a tactic often used in initial access or execution phases of an attack chain. Proactively hunting for these specific URLhaus-tagged indicators within Azure Sentinel is critical to intercepting early-stage infections before they establish persistence or exfiltrate sensitive data from the environment.
Threat: malware_download Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://175.148.152.255:48925/bin.sh | offline | malware_download | 2026-07-09 |
hxxp://175.148.154.150:51716/i | offline | malware_download | 2026-07-09 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["175.148.152.255", "175.148.154.150"]);
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(["175.148.152.255", "175.148.154.150"]);
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 recommended filters or exclusions:
Automated Patch Management Scans
svc-patch-agent, jamf-provisioner) and whitelist the known update repository domains (e.g., *.microsoft.com, updates.ivanti.com).Software Development & CI/CD Pipeline Artifacts
repo.maven.apache.org, registry.npmjs.org) to prevent alerts on routine build jobs.IT Administration & Asset Discovery Tasks