This detection rule identifies adversary behavior involving the execution of Unknown Loader components, which often serve as initial footholds for deploying additional payloads or establishing persistence within a network. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate and investigate potential early-stage compromises before they escalate into broader lateral movement or data exfiltration campaigns.
Malware Family: Unknown Loader Total IOCs: 3 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | planecorn.xyz | botnet_cc | 2026-08-26 | 100% |
| domain | waylace.xyz | botnet_cc | 2026-08-26 | 100% |
| domain | crateridge.cfd | botnet_cc | 2026-08-26 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Loader
let malicious_domains = dynamic(["planecorn.xyz", "waylace.xyz", "crateridge.cfd"]);
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, along with targeted filters and exclusions:
Scenario: Enterprise Antivirus Engine Updates
ProcessName contains “MsMpEng.exe”, “Cfssvc.exe”, or “FalconSensorService.exe”. Additionally, add an exclusion for any network destination IP ranges belonging to the vendor’s update servers (e.g., 13.107.x.x for Microsoft).Scenario: Automated Patch Deployment via Configuration Management
%TEMP% and registry modifications that mimic loader behavior.ProcessCommandLine contains keywords like “/install”, “/update”, or specific patch identifiers (e.g., “KB503xxx”). Furthermore, filter out activity originating from the specific service account used for deployment (e.g., DOMAIN\SCCM-Service-Account).Scenario: Third-Party SaaS Integration via Browser Extensions