This hunt targets adversary behavior involving the execution of unknown loader components that may indicate early-stage malware staging or command-and-control infrastructure deployment within the network. Proactively hunting these specific ThreatFox IOCs in Azure Sentinel is critical to identify and isolate potential threats before they establish persistence, thereby reducing dwell time for sophisticated attacks leveraging this loader framework.
Malware Family: Unknown Loader Total IOCs: 3 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | earthweight.xyz | botnet_cc | 2026-07-17 | 100% |
| domain | drive-search-id84192.info | payload_delivery | 2026-07-17 | 100% |
| domain | photo-check93123.pro | payload_delivery | 2026-07-17 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Loader
let malicious_domains = dynamic(["earthweight.xyz", "drive-search-id84192.info", "photo-check93123.pro"]);
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 rule, along with recommended filters or exclusions:
Enterprise Patch Management Deployments (SCCM/Intune)
setup.exe spawning msiexec with embedded loaders) that match the “Unknown Loader” IOCs before the final package is signed and recognized by the threat intelligence feed.ccmexec.exe or IntuneManagementExtension.exe, specifically when the file path contains \CCM\ or \Microsoft Intune Management Extension\.Automated Software Distribution via Chocolatey
choco.exe invoking a temporary .bat or PowerShell script that downloads and executes an unsigned loader) which mimics the behavior of the Unknown Loader IOCs during the initial extraction phase.choco.exe where the command line arguments contain flags like -y, --install, or specific package names known to be internal (e.g., internal-app-loader).Scheduled Antivirus Definition Updates