This hunt targets adversaries leveraging phishing campaigns or compromised web resources to deliver initial malware payloads that subsequently download and execute secondary malicious components. Proactively hunting for these specific URLhaus indicators in Azure Sentinel is critical to intercept early-stage infection vectors before they establish command-and-control channels or facilitate lateral movement across the network.
Threat: malware_download Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://119.114.152.67:56396/bin.sh | online | malware_download | 2026-07-18 |
hxxp://123.10.143.34:45383/bin.sh | online | malware_download | 2026-07-18 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["123.10.143.34", "119.114.152.67"]);
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(["123.10.143.34", "119.114.152.67"]);
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 4 specific false positive scenarios for the URLhaus: malware_download Malicious URLs rule in an enterprise environment, along with targeted filters or exclusions:
Automated Software Patching and Updates
.msi, .exe) typical of patching cycles.SCCM-Server-01) or specific vendor IP ranges (e.g., Microsoft Update CDN IPs). Additionally, exclude URLs containing standard update paths like /update, /patch, or /deploy when the source process is ccmexec.exe or JamfProAgent.IT Admin Manual Troubleshooting and Tool Deployment
IT-Admins or Security-Ops groups. Correlate alerts with the source process name; if the initiating process is a known browser (e.g., chrome.exe, msedge.exe) launched by an admin account accessing domains like learn.microsoft.com, wireshark.org, or technet.microsoft.com, suppress the alert.