This detection identifies adversary behavior where attackers distribute deceptive software packages via malicious URLs to trick users into downloading and executing compromised applications. A SOC team should proactively hunt for these indicators in Azure Sentinel because fake software campaigns often serve as a primary entry point for supply chain attacks that can lead to widespread credential theft or ransomware deployment across the organization.
Threat: fake-software Total URLs: 8 Active URLs: 8
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://github.com/ThreadColonelSouk/release/releases/download/release/release.zip | online | malware_download | 2026-08-08 |
hxxps://github.com/Shapecluneedle/jubilant-engine/releases/download/exec/payd.exe | online | malware_download | 2026-08-08 |
hxxps://github.com/Shapecluneedle/jubilant-engine/releases/download/exec/payl.exe | online | malware_download | 2026-08-08 |
hxxps://github.com/BlackSuite999/Fishstrap-Roblox-2026/releases/download/release/Release.v.1.3.8.zip | online | malware_download | 2026-08-08 |
hxxps://github.com/CoopeRlOq9/Project-Zomboid-Build-42-Map/releases/download/release/Release.v.1.3.8.zip | online | malware_download | 2026-08-08 |
hxxps://github.com/Alomonohom6/stalzone-cheat-2026/releases/download/release/Release.v.3.1.4.zip | online | malware_download | 2026-08-08 |
hxxps://github.com/AlinRight93/stalzone-tools-cheat-2026/releases/download/release/Stalzone.v1.6.by.Kernel.Labs.zip | online | malware_download | 2026-08-08 |
hxxps://github.com/BeamChunin42/jennymod-installer/releases/download/latest/JennyMod.zip | online | malware_download | 2026-08-08 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: fake-software
let malicious_domains = dynamic(["github.com"]);
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(["github.com"]);
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 specific false positive scenarios for the URLhaus: fake-software Malicious URLs rule, along with recommended filters and exclusions tailored for an enterprise environment:
Software Deployment via Microsoft Endpoint Configuration Manager (SCCM/MECM)
download.adobe.com, update.microsoft.com) that host installer packages. URLhaus may flag these dynamic download links as “fake-software” because they resemble the structure of phishing URLs mimicking legitimate software updates.*.configmgr.com) connecting to known vendor update domains, specifically filtering out HTTP POST requests containing user-agent strings like “Microsoft Endpoint Configuration Manager”.Automated Browser Update Checks by Corporate Kiosk Systems
update.google.com or go.microsoft.com using generic URLs that lack specific version parameters, triggering the “fake-software” tag due to high entropy in the URL path.chrome.exe, msedge.exe) running under the context of a scheduled task named “BrowserUpdateCheck”, and restrict the scope to specific kiosk subnet ranges (e.g., 10.50.x.x).DevOps Pipeline Artifact Retrieval by CI/CD Agents