This hunt targets the presence of Creal Stealer IOCs to identify potential credential theft or data exfiltration attempts by this malware family. Proactively hunting for these indicators in Azure Sentinel allows the SOC to detect compromised endpoints early, mitigating the risk of persistent access and lateral movement within the environment.
Malware Family: Creal Stealer Total IOCs: 3 IOC Types: md5_hash, sha256_hash, sha1_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| md5_hash | 65752cdf1c2e5463a694cffd51a20732 | payload | 2026-09-04 | 95% |
| sha256_hash | 352f292ab6580214f325b4200606fb868bf5b7cfdd3b8599733389cb15a0ea1d | payload | 2026-09-04 | 95% |
| sha1_hash | e0e8c6c04ecef485b9586f930df6b666de325a54 | payload | 2026-09-04 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - Creal Stealer
let malicious_hashes = dynamic(["65752cdf1c2e5463a694cffd51a20732", "352f292ab6580214f325b4200606fb868bf5b7cfdd3b8599733389cb15a0ea1d", "e0e8c6c04ecef485b9586f930df6b666de325a54"]);
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
| Sentinel Table | Notes |
|---|---|
DeviceFileEvents | Ensure this data connector is enabled |
libcurl or a shared library whose hash matches one of the Creal Stealer IOCs due to a known benign build artifact.
C:\Jenkins\workspace\, /var/lib/jenkins/) or where the parent process is a recognized build tool (e.g., java.exe, node.exe, python.exe).CCleaner or BulkCrunch that temporarily loads or scans a file matching an IOC hash during a deep disk cleanup or deduplication task.
ccleaner64.exe, bulkcrunch.exe) and the file location is within the user’s temporary directory (%TEMP%) or a designated audit staging folder.Volatility or Yara64 against a known test image or captured sample that intentionally contains the Creal Stealer IOCs for validation purposes.
yara64.exe, volatility3.exe, rclone.exe) or if the file path contains keywords like test, sample, quarantine, or forensics.