This detection identifies suspicious activity linked to the Unknown Loader malware by monitoring specific indicators of compromise that often signal initial access or lateral movement attempts within an Azure environment. Proactively hunting for these IOCs in Azure Sentinel is critical because Unknown Loader frequently serves as a precursor to advanced persistent threats, allowing the SOC team to intercept potential compromises before they escalate into full-scale incidents.
Malware Family: Unknown Loader Total IOCs: 2 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | structuredolls.xyz | botnet_cc | 2026-08-11 | 100% |
| domain | songsbeginner.cfd | botnet_cc | 2026-08-11 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Loader
let malicious_domains = dynamic(["structuredolls.xyz", "songsbeginner.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 the documented false positive scenarios and corresponding exclusions for the ThreatFox: Unknown Loader IOCs rule:
Scenario: Automated Software Deployment via SCCM/Intune
ccmsetup.exe, Microsoft.IntuneManagementAgent.exe, and their child processes when running under the SYSTEM or specific Service Accounts (e.g., DOMAIN\SCCM-Deploy). Additionally, filter out events occurring during defined maintenance windows (e.g., 02:00–04:00 UTC).Scenario: Scheduled PowerShell Maintenance Scripts
powershell.exe which then loads dynamic modules or external DLLs that appear as “Unknown” loaders because they are custom internal tools not yet whitelisted in the threat intelligence feed.powershell.exe processes where the command line contains specific keywords (e.g., -ExecutionPolicy Bypass, -File C:\Scripts\). Furthermore, exclude alerts triggered by Task Scheduler tasks with names containing “Maintenance,” “Cleanup,” or “Backup” owned by the built-in SYSTEM account.Scenario: Third-Party Endpoint Protection Scans