This rule detects adversary behavior where external systems or endpoints initiate connections to known malicious URLs specifically associated with executable files (EXE), indicating potential drive-by downloads or phishing campaigns designed to deploy malware. A SOC team should proactively hunt for this activity in Azure Sentinel because early identification of these high-severity EXE-tagged threats allows for immediate containment before the adversary can establish persistence or execute payload delivery within the network.
Threat: exe Total URLs: 2 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://bulkdevices.com/blog/Chrome.exe | offline | malware_download | 2026-08-22 |
hxxps://mon-blanc-03.cfd/dollar.exe | online | malware_download | 2026-08-22 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: exe
let malicious_domains = dynamic(["mon-blanc-03.cfd"]);
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(["mon-blanc-03.cfd"]);
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: exe Malicious URLs detection rule, along with targeted filters and exclusions suitable for an enterprise environment:
Scenario: Automated Software Deployment via SCCM/Intune
.exe) from trusted vendor repositories (e.g., download.microsoft.com, go.microsoft.com, or specific SaaS update servers) to push updates. These URLs often contain dynamic query parameters that URLhaus may flag as suspicious due to high entropy in the path.*.microsoft.com, *.office365.com) and specific user agents containing “SCCM” or “IntuneAgent”. Additionally, exclude URLs where the destination file hash matches a known good baseline in your CASB solution.Scenario: Scheduled Antivirus Definition Updates
.exe executables. These downloads occur from high-volume CDNs that URLhaus may occasionally misclassify due to rapid content rotation.*.crowdstrike.com, *.sentinelone.net) during standard maintenance windows (02:00–04:00 local time). Alternatively, filter out alerts where the initiating process is the known AV service executable (e.g., C:\Program Files\CrowdStrike\fsqa.exe).Scenario: CI/CD Pipeline Artifact Downloads