This hunt detects adversary activity involving the execution of Unknown Loader indicators, which often serve as initial footholds for malware delivery and lateral movement within an Azure environment. Proactively hunting these specific IOCs in Azure Sentinel allows the SOC team to identify early-stage compromise signals before they escalate into full-blown incidents, thereby reducing detection latency and potential impact.
Malware Family: Unknown Loader Total IOCs: 11 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | abcsgftr.cc | botnet_cc | 2026-07-31 | 100% |
| domain | alkociferblat.cc | botnet_cc | 2026-07-31 | 100% |
| domain | blakcinwhitexn.cc | botnet_cc | 2026-07-31 | 100% |
| domain | gotynotbag.cc | botnet_cc | 2026-07-31 | 100% |
| domain | gugonaftikzin.cc | botnet_cc | 2026-07-31 | 100% |
| domain | hihankidaha.cc | botnet_cc | 2026-07-31 | 100% |
| domain | hilacbatoriaaa.cc | botnet_cc | 2026-07-31 | 100% |
| domain | huishuvish.cc | botnet_cc | 2026-07-31 | 100% |
| domain | infociganka.cc | botnet_cc | 2026-07-31 | 100% |
| domain | pluhabovra.info | botnet_cc | 2026-07-31 | 100% |
| domain | tue-partner-03.cfd | botnet_cc | 2026-07-31 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Loader
let malicious_domains = dynamic(["abcsgftr.cc", "alkociferblat.cc", "blakcinwhitexn.cc", "gotynotbag.cc", "gugonaftikzin.cc", "hihankidaha.cc", "hilacbatoriaaa.cc", "huishuvish.cc", "infociganka.cc", "pluhabovra.info", "tue-partner-03.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 rule, including targeted filters and exclusions suitable for an enterprise environment:
Scenario: Automated Endpoint Protection Updates via Microsoft Defender
MsMpEng.exe) frequently downloads and executes update packages from the cloud. These updates often utilize generic loader processes that match the “Unknown Loader” signature, especially during off-hours or when new definition signatures are pushed globally.MsMpEng.exe AND the file path containing \Program Files\Windows Defender\. Additionally, exclude any IOCs where the source IP belongs to the Microsoft Update CDN range (e.g., *.update.microsoft.com).Scenario: Scheduled Office 365 Configuration Sync
OfficeClickToRun.exe) runs scheduled jobs to synchronize configuration settings and download feature updates. These background tasks often spawn temporary loader processes that fetch manifests from the Azure Content Delivery Network, triggering the Unknown Loader detection logic due to dynamic hash generation of new update components.OfficeClickToRun.exe or OsfClient.exe. Implement a time-based filter to suppress these detections during known maintenance windows (e.g., 02:00–04:00 local time) when bulk syncs occur.Scenario: Enterprise Software Deployment via SCCM/Intune
ccmexec.exe or Microsoft.IntuneManagementAgent) frequently deploy software updates and patches to endpoints. The deployment engine utilizes a generic loader component to unpack and install new applications, which often matches the IOCs associated