This hunt targets adversary behavior where threat actors deploy the ACR Stealer malware to exfiltrate sensitive credentials and data from Azure environments using three specific indicators of compromise. Proactively hunting for these IOCs in Azure Sentinel is critical because early detection of this high-severity stealer can prevent lateral movement and significant data loss before the adversary establishes persistence.
Malware Family: ACR Stealer Total IOCs: 3 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | dl.connectivityplatform.cc | botnet_cc | 2026-07-13 | 100% |
| domain | auth.predatordeuce.cc | botnet_cc | 2026-07-13 | 100% |
| domain | predatordeuce.cc | botnet_cc | 2026-07-13 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - ACR Stealer
let malicious_domains = dynamic(["dl.connectivityplatform.cc", "auth.predatordeuce.cc", "predatordeuce.cc"]);
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 four specific false positive scenarios for the ThreatFox: ACR Stealer IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Enterprise Antivirus Signature Updates
Process Name matches the specific antivirus service executables (e.g., C:\Program Files\CrowdStrike\fsagent.exe, MsMpEng.exe) and the Parent Process is the scheduled update task (Task Scheduler or Service Control Manager).Software Deployment via SCCM/Intune
User Account names ending in _svc, SYSTEM, or specific service accounts (e.g., DOMAIN\SCCM-Deploy-Svc) running on the deployment agent process (ccmexec.exe or IntuneManagementExtension.exe).Internal Patch Management Scans