This hypothesis posits that adversaries are leveraging the Unknown Loader to execute initial command-and-control communications or payload delivery through specific network indicators of compromise. Proactively hunting these four IOCs within Azure Sentinel is critical because early detection of this loader can prevent lateral movement and data exfiltration before the adversary establishes a persistent foothold in the environment.
Malware Family: Unknown Loader Total IOCs: 4 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | drive-photo-id83123.com | payload_delivery | 2026-07-15 | 100% |
| domain | safeimageguest.info | payload_delivery | 2026-07-15 | 100% |
| domain | stickcloth.xyz | botnet_cc | 2026-07-15 | 100% |
| domain | beefsofa.xyz | botnet_cc | 2026-07-15 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Loader
let malicious_domains = dynamic(["drive-photo-id83123.com", "safeimageguest.info", "stickcloth.xyz", "beefsofa.xyz"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
DnsEvents | Ensure this data connector is enabled |
Here are four specific false positive scenarios for the ThreatFox: Unknown Loader IOCs detection rule, tailored for a legitimate enterprise environment:
Enterprise Software Deployment via SCCM/Intune
ccmexec.exe or Microsoft.IntuneManagementAgent.exe, specifically when the file path contains \SoftwareDistribution\ or \CCMCache\.Automated Patch Management with WSUS
C:\Windows\SoftwareDistribution\Download directory before executing the installation sequence.DOMAIN\PatchSvc) and the execution time falls within the defined maintenance window (e.g., Sundays between 02:00 – 04:00 UTC).CI/CD Pipeline Artifact Extraction