This detection identifies adversary behavior where threat actors distribute executable malware through malicious URLs flagged by URLhaus, indicating potential drive-by downloads or phishing campaigns targeting end-user systems. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before the executables establish persistence on the network.
Threat: exe Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://tue-orange-01.cfd/JblSound.exe | offline | malware_download | 2026-07-23 |
hxxp://85.120.255.252:8000/csharp.exe | offline | malware_download | 2026-07-23 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: exe
let malicious_domains = dynamic(["85.120.255.252", "tue-orange-01.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(["85.120.255.252", "tue-orange-01.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 rule, along with targeted filters and exclusions suitable for an enterprise environment:
Scenario: Scheduled Software Updates via Cloud Repositories
.exe) from trusted cloud endpoints. These URLs often contain dynamic parameters that may be flagged by URLhaus heuristics despite being benign.*.microsoft.com, *.update.microsoft.com, *.ivanti.com). Additionally, filter out alerts where the source process is specifically Usoclient.exe or IvantiAgent.exe.Scenario: Admin Deployment of Enterprise Applications
.exe packages from internal distribution points or external vendor portals. The URL signature for these downloads can mimic malicious patterns due to the nature of large executable transfers.10.x.x.x, 192.168.x.x) where the initiating process is ccmsetup.exe or IntuneManagementExtension.exe.Scenario: CI/CD Pipeline Artifact Retrieval
.exe files that are