This hunt targets adversary behavior where malicious actors utilize the Unknown Loader to execute initial payload delivery and establish persistence through five specific indicators of compromise. Proactive hunting in Azure Sentinel is critical because these IOCs often represent early-stage infection vectors that may evade standard signature-based defenses, allowing attackers to maintain a low profile before lateral movement begins.
Malware Family: Unknown Loader Total IOCs: 5 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | woolstem.xyz | botnet_cc | 2026-07-14 | 100% |
| domain | dddododiiik.com | payload_delivery | 2026-07-14 | 100% |
| domain | extranet-partners-report.com | payload_delivery | 2026-07-14 | 100% |
| domain | imagesafedown.info | payload_delivery | 2026-07-14 | 100% |
| domain | mentopo.info | payload_delivery | 2026-07-14 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Loader
let malicious_domains = dynamic(["woolstem.xyz", "dddododiiik.com", "extranet-partners-report.com", "imagesafedown.info", "mentopo.info"]);
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 4 specific false positive scenarios for the ThreatFox: Unknown Loader IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Enterprise Software Deployment via SCCM/Intune
C:\Windows\CCMCache directory with hash values matching “Unknown Loader” IOCs before they are fully registered in the internal threat intelligence feed.\Microsoft Intune Management Extension\, \CCMCache\, and process names ccmexec.exe or IntuneManagementExtension.exe. Additionally, whitelist hash values associated with known vendor signatures (e.g., Microsoft, Adobe) that are frequently flagged as “unknown” due to rapid patching cycles.Automated Database Maintenance and Backup Jobs
C:\Program Files\Microsoft SQL Server\MSSQL* directory. Explicitly exclude parent process names like sqlservr.exe, vbruntime.exe, or simagent.exe.IT Admin Scripting with PowerShell and Python