This detection targets adversary behavior involving the execution of unknown loader processes that may indicate early-stage malware staging or command-and-control communication. Proactively hunting for these indicators in Azure Sentinel is critical to identify and isolate potential threats before they escalate into full-blown incidents within the enterprise environment.
Malware Family: Unknown Loader Total IOCs: 2 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | forecast-chaos.com | botnet_cc | 2026-08-29 | 100% |
| domain | sound-obstacle.com | botnet_cc | 2026-08-29 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Loader
let malicious_domains = dynamic(["forecast-chaos.com", "sound-obstacle.com"]);
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, along with suggested filters or exclusions tailored for an enterprise environment:
Scenario: Automated Software Deployment via SCCM/Intune
ccmsetup.exe (SCCM) or Microsoft.IntuneManagementExtension.exe. Additionally, filter out any IOCs where the parent process is running under the SYSTEM account and the file path resides within the standard deployment directories (e.g., C:\Windows\CCM\ or C:\ProgramData\Microsoft\Intune Management Extension).Scenario: Scheduled Antivirus Definition Updates
MpCmdRun.exe, Symantec Antivirus Update Service, or C-Service.exe) and the file hash is part of a trusted “Known Good” list maintained in the SIEM. A time-based filter can also be applied to exclude events occurring during standard maintenance windows (e.g., 02:00–04:00 AM).Scenario: Third-Party Patch Management Tools