This detection identifies adversary behavior where threat actors distribute executable files via malicious URLs to initiate command-and-control communication or deliver initial payloads within the Azure Sentinel environment. The SOC team should proactively hunt for these specific URL patterns to rapidly isolate compromised endpoints and prevent lateral movement before the execution of potentially harmful .exe files spreads across the network.
Threat: exe Total URLs: 16 Active URLs: 16
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://aethersyncmatrix5.lol/crypt/obsh/beb.exe | online | malware_download | 2026-07-27 |
hxxps://aethersyncmatrix5.lol/crypt/21-32/arFtU.exe | online | malware_download | 2026-07-27 |
hxxps://aethersyncmatrix5.lol/crypt/obsh/R2.exe | online | malware_download | 2026-07-27 |
hxxps://aethersyncmatrix5.lol/crypt/obsh/R5.exe | online | malware_download | 2026-07-27 |
hxxps://aethersyncmatrix5.lol/crypt/obsh/crazy.exe | online | malware_download | 2026-07-27 |
hxxps://aethersyncmatrix5.lol/crypt/21-32/kliulij.exe | online | malware_download | 2026-07-27 |
hxxps://aethersyncmatrix5.lol/crypt/21-32/ARbeb.exe | online | malware_download | 2026-07-27 |
hxxps://aethersyncmatrix5.lol/crypt/21-32/kJHGFDs.exe | online | malware_download | 2026-07-27 |
hxxps://aethersyncmatrix5.lol/crypt/21-32/hjbk.exe | online | malware_download | 2026-07-27 |
hxxps://aethersyncmatrix5.lol/crypt/21-32/ojujn.exe | online | malware_download | 2026-07-27 |
hxxps://aethersyncmatrix5.lol/crypt/21-32/hnmh.exe | online | malware_download | 2026-07-27 |
hxxps://aethersyncmatrix5.lol/crypt/21-32/jhgkuyyg.exe | online | malware_download | 2026-07-27 |
hxxps://aethersyncmatrix5.lol/crypt/21-32/KLLNMF.exe | online | malware_download | 2026-07-27 |
hxxps://aethersyncmatrix5.lol/crypt/21-32/KLHdfs.exe | online | malware_download | 2026-07-27 |
hxxps://aethersyncmatrix5.lol/crypt/21-32/xqAAE.exe | online | malware_download | 2026-07-27 |
hxxps://aethersyncmatrix5.lol/crypt/21-32/bjbh.exe | online | malware_download | 2026-07-27 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: exe
let malicious_domains = dynamic(["aethersyncmatrix5.lol"]);
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(["aethersyncmatrix5.lol"]);
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 rule, including tailored filters and exclusions:
Scenario: Automated Patching via Microsoft Update Services
wuauserv) or WSUS client regularly downloads executable installers (.exe patches) from go.microsoft.com, download.windowsupdate.com, or software.download.prss.microsoft.com. These legitimate URLs often match the “malicious exe” signature due to high traffic volume and dynamic content.*.microsoft.com and *.windowsupdate.com when the source process is svchost.exe (specifically the wuauserv service) or MicrosoftUpdate.exe.Scenario: Scheduled Antivirus Definition Updates
.exe payloads that may be flagged by URLhaus heuristics.CrowdStrike, SentinelOne) or filter by destination domains such as *.crowdstrike.com, *.sentinelone.net, and *.symantec.com.Scenario: Software Deployment via SCCM/Intune
.exe installers from internal file servers or Azure Blob Storage URLs that are tagged as executable downloads, triggering the rule despite being trusted internal traffic.