This detection identifies adversaries leveraging known malicious URLs to initiate malware downloads, a tactic often used in initial access or execution phases of an attack chain. Proactively hunting for these specific URL patterns within Azure Sentinel enables the SOC team to rapidly isolate compromised endpoints and block lateral movement before the malware fully establishes persistence on the network.
Threat: malware_download Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://125.42.33.214:43715/bin.sh | online | malware_download | 2026-08-30 |
hxxp://119.185.242.125:51657/i | online | malware_download | 2026-08-30 |
hxxp://119.185.242.125:51657/bin.sh | online | malware_download | 2026-08-30 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["125.42.33.214", "119.185.242.125"]);
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(["125.42.33.214", "119.185.242.125"]);
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 rule, along with targeted filtering strategies suitable for an enterprise environment:
Scenario: Automated Endpoint Protection Updates
malware_download due to the nature of the content (installers or update scripts).source_user is a service account (e.g., svc-crowdstrike, defender-agent) AND the destination domain matches known vendor domains (e.g., *.crowdstrike.com, *.update.microsoft.com).Scenario: Scheduled Software Deployment via SCCM/Intune
.msi or .exe files from internal distribution points or public repositories, which can trigger the rule if the URL is newly registered in the threat feed.process_name corresponds to deployment agents (e.g., ccmsetup.exe, IntuneManagementExtension.exe) AND the event occurs within the defined maintenance window (e.g., 02:00–04:00 UTC).Scenario: Admin Manual Tool Downloads