This detection identifies potential initial access or command-and-control activity by flagging network connections to known indicators of compromise (IOCs) linked to the Unknown Loader malware family. Proactive hunting for these IOCs in Azure Sentinel is critical because Unknown Loader often serves as a precursor to advanced persistent threats, allowing the SOC team to intercept early-stage infections before they escalate into full-scale data exfiltration or lateral movement campaigns.
Malware Family: Unknown Loader Total IOCs: 2 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | beardiscovery.xyz | botnet_cc | 2026-08-14 | 100% |
| domain | bedpocket.xyz | botnet_cc | 2026-08-14 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Loader
let malicious_domains = dynamic(["beardiscovery.xyz", "bedpocket.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 specific false positive scenarios and corresponding filters for the ThreatFox: Unknown Loader IOCs detection rule in an enterprise environment:
Scenario: Automated Software Deployment via Configuration Management Tools
ccmexec.exe (SCCM) or ansible-runner, provided the file hash matches a known baseline from the deployment team’s artifact repository.Scenario: Scheduled Antivirus Definition Updates
\Program Files\ subdirectories specific to the AV vendor (e.g., C:\Program Files\McAfee\HostAgent) and the process name includes keywords like “Update,” “Service,” or “Loader.”Scenario: Internal DevOps CI/CD Pipeline Execution