This hypothesis detects adversary behavior where endpoints attempt to download or execute executable files from URLs identified by URLhaus as hosting known malware signatures. A SOC team should proactively hunt for this activity in Azure Sentinel to rapidly identify and isolate potential initial access vectors before malicious executables compromise the internal network.
Threat: exe Total URLs: 4 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://manbipll.duckdns.org/LjEZs/main.exe | offline | malware_download | 2026-08-12 |
hxxp://manbipll.duckdns.org/LjEZs/debug_main.exe | online | malware_download | 2026-08-12 |
hxxp://176.65.139.201/LjEZs/debug_main.exe | offline | malware_download | 2026-08-12 |
hxxp://176.65.139.201/LjEZs/main.exe | online | malware_download | 2026-08-12 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: exe
let malicious_domains = dynamic(["176.65.139.201", "manbipll.duckdns.org"]);
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(["176.65.139.201", "manbipll.duckdns.org"]);
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, including tailored filters and exclusions suitable for an enterprise environment:
Scenario: Automated Software Deployment via Endpoint Management Tools
.exe installers from public repositories (e.g., GitHub Releases, Chocolatey) to deploy updates. These URLs often contain executable payloads that URLhaus flags as “suspicious” due to the generic nature of auto-generated download links.10.x.x.x) or specific hostnames like *.intune.microsoft.com and chocolatey.org where the destination URL contains .exe.Scenario: Scheduled Antivirus Definition Updates
.exe wrappers from the vendor’s update servers, which can trigger false positives if the URL structure changes slightly between releases.02:00 - 04:00 UTC) or exclude specific vendor domains such as *.crowdstrike.com, *.sentinelone.net, and go.microsoft.com when the User-Agent string contains “DefenderUpdate” or “FalconSensor”.Scenario: Legitimate Cloud Storage Sync Operations