This detection identifies adversary behavior where threat actors distribute executable files through malicious URLs flagged by URLhaus to facilitate initial access or payload delivery. A SOC team should proactively hunt for these indicators in Azure Sentinel because early identification of malicious .exe links allows for rapid containment before the execution phase triggers broader lateral movement or data exfiltration within the environment.
Threat: exe Total URLs: 2 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://solar-sanat.net/1158-27.exe | online | malware_download | 2026-07-28 |
hxxps://solar-sanat.net/Rogerz7.exe | offline | malware_download | 2026-07-28 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: exe
let malicious_domains = dynamic(["solar-sanat.net"]);
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(["solar-sanat.net"]);
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: exe Malicious URLs detection rule in an enterprise environment, along with targeted exclusion strategies:
Scenario: Patch Management Software Updates
.exe) from vendor repositories to stage updates before deployment. These downloads often originate from trusted CDN domains that may be flagged by URLhaus due to high traffic volume or generic file signatures.*.microsoft.com, *.jamf.com, *.ivanti.com) in the detection logic, ensuring the URL path contains keywords like /update or /download.Scenario: Scheduled Backup Agent Executables
.exe files from the vendor’s update servers during peak maintenance windows, mimicking a malicious download pattern.Role=BackupAgent. Additionally, exclude URLs containing the specific backup vendor’s API endpoint paths.Scenario: Internal Software Deployment via SCCM/Intune