This detection rule identifies adversary activity involving unknown loader processes that may indicate early-stage malware execution or command-and-control communication within the environment. Proactively hunting for these specific IOCs in Azure Sentinel is critical to intercept potential threats before they escalate into full-blown incidents by revealing hidden persistence mechanisms and anomalous network behaviors.
Malware Family: Unknown Loader Total IOCs: 3 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | cooldogshistory.com | botnet_cc | 2026-07-28 | 100% |
| domain | ilikegoodpersontoo.com | botnet_cc | 2026-07-28 | 100% |
| domain | godhelp-us.com | botnet_cc | 2026-07-28 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Loader
let malicious_domains = dynamic(["cooldogshistory.com", "ilikegoodpersontoo.com", "godhelp-us.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 4 specific false positive scenarios for the ThreatFox: Unknown Loader IOCs rule, along with targeted filters and exclusions to reduce noise in an enterprise environment:
Scenario: Scheduled Antivirus Definitions Update via Local Service Account
SYSTEM account or a dedicated service account (e.g., svc_antivirus) triggers the “Unknown Loader” behavior when updating virus definitions. This often involves downloading and executing new definition packages from vendors like Microsoft Defender, Symantec Endpoint Protection, or CrowdStrike.Process Name is MpCmdRun.exe, ccSetCmd.exe, or csagent.exe AND the User Account matches known service accounts (e.g., NT SYSTEM, svc_antivirus). Additionally, filter out events occurring during defined maintenance windows (e.g., 02:00–04:00 daily).Scenario: Deployment of New Applications via Configuration Management Tools
Process Name matching known deployment agents (e.g., ccmsetup.exe, ivanti_agent_service.exe) where the Parent Process is a recognized orchestration tool. Alternatively, whitelist specific file paths under the enterprise software distribution directory (e.g., C:\Program Files\Microsoft Configuration Manager).Scenario: Execution of Custom PowerShell Scripts by Administrators