This detection identifies the presence of Unknown Loader indicators that adversaries often utilize to establish persistence and execute malicious payloads within Azure Sentinel environments. Proactively hunting for these specific IOCs is critical because they frequently represent early-stage compromise activities that may evade standard signature-based defenses before escalating into broader lateral movement or data exfiltration incidents.
Malware Family: Unknown Loader Total IOCs: 2 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | squirrelsecretary.cfd | botnet_cc | 2026-08-05 | 100% |
| domain | receiptpie.xyz | botnet_cc | 2026-08-05 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Loader
let malicious_domains = dynamic(["squirrelsecretary.cfd", "receiptpie.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 5 specific false positive scenarios for the ThreatFox: Unknown Loader IOCs rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Automated Software Deployment via SCCM/Intune
.msi, .exe) from internal distribution points to deploy new applications. These loaders often lack a digital signature matching the specific “Known” list in ThreatFox, triggering an alert for every deployment cycle.ccmsetup.exe or Microsoft.IntuneManagementAgent) and restrict the rule to only trigger when the file hash is not present in the internal “Approved Software” whitelist database.Scenario: Scheduled Antivirus Definition Updates
C:\ProgramData\CrowdStrike\ or C:\Windows\System32\ccm\) and the process name matches known update services (e.g., FalconService.exe, MsMpEng.exe).Scenario: Browser-Based Cloud Storage Sync Operations