This detection identifies adversary activity involving the execution of Unknown Loader components, which often serve as initial footholds for lateral movement and payload delivery within Azure environments. Proactive hunting is critical to uncover early-stage compromises that may evade standard signature-based defenses by correlating these specific IOCs with anomalous process behaviors across the tenant.
Malware Family: Unknown Loader Total IOCs: 2 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | icicleexpansion.xyz | botnet_cc | 2026-07-03 | 100% |
| domain | underwearbrick.space | botnet_cc | 2026-07-03 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Loader
let malicious_domains = dynamic(["icicleexpansion.xyz", "underwearbrick.space"]);
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 suggested exclusions for the ThreatFox: Unknown Loader IOCs detection rule in an enterprise environment:
Endpoint Management Software Updates
*.update.microsoft.com or *.jamfcloud.com). Additionally, whitelist known loader executable hashes identified during a baseline scan of the management console.Scheduled Software Deployment Jobs
svc-ansible-deploy or SCCM-SMSPackageProvider) and restrict the rule to trigger only on non-business hours if the job is known to run exclusively during maintenance windows.CI/CD Pipeline Artifact Distribution