← Back to SOC feed Coverage →

ThreatFox: ACR Stealer IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
infostealeriocthreatfoxwin-acr_stealer
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-09-13T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt identifies the presence of known indicators of compromise associated with the ACR Stealer, a tool frequently used by adversaries to exfiltrate sensitive data from Azure Container Registry. Proactively hunting for these IOCs allows the SOC to detect early-stage reconnaissance or data theft attempts before they escalate into a full breach within the Azure Sentinel environment.

IOC Summary

Malware Family: ACR Stealer Total IOCs: 3 IOC Types: md5_hash, sha256_hash, sha1_hash

TypeValueThreat TypeFirst SeenConfidence
sha256_hash91410536fbaa9a8d9e9e13f3019e70ce93cae0f13ed8ef68f4234fa7a2b09f56payload2026-09-1395%
sha1_hash605b5222a62efa748a131d4e0d852b479ee8d25apayload2026-09-1395%
md5_hash58eadcc3e89bed96bdc171d7ce9d36dfpayload2026-09-1395%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - ACR Stealer
let malicious_hashes = dynamic(["91410536fbaa9a8d9e9e13f3019e70ce93cae0f13ed8ef68f4234fa7a2b09f56", "605b5222a62efa748a131d4e0d852b479ee8d25a", "58eadcc3e89bed96bdc171d7ce9d36df"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
DeviceFileEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/win.acr_stealer/