This hunt targets the presence of known IOCs associated with the MASS Logger, a tool frequently used by adversaries to capture sensitive data such as credentials and session tokens. Proactively hunting for these indicators in Azure Sentinel allows the SOC to identify compromised workloads or endpoints before the logger can exfiltrate data or establish persistent access.
Malware Family: MASS Logger Total IOCs: 2 IOC Types: sha256_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| sha256_hash | 6a341b3e9c265e672ac0bb8c72a7fb2b72f8872a1a12b5d1fa48b868ca43f8b4 | payload | 2026-09-13 | 100% |
| sha256_hash | e11f3af65a8ff295858d81d135d49aadb0a157b48b7daffdc34c0c921a29d5ca | payload | 2026-09-13 | 100% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - MASS Logger
let malicious_hashes = dynamic(["6a341b3e9c265e672ac0bb8c72a7fb2b72f8872a1a12b5d1fa48b868ca43f8b4", "e11f3af65a8ff295858d81d135d49aadb0a157b48b7daffdc34c0c921a29d5ca"]);
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 |
powershell.exe or pwsh.exe and the parent process is a known CI/CD agent (e.g., jenkins-agent, gitlab-runner, azure-devops-agent) or a standard deployment tool like ansible or chef-client.clamscan or a custom YARA scanner that loads the MASS Logger IOC list into memory or writes it to a temporary file for matching, triggering the detection on the scanner process itself.
clamscan, yara, osqueryi, falco) or where the command line contains arguments like --scan, --check, or --match.nginx or apache2) serves a static file (such as a JavaScript bundle or a CSS file) that contains a string matching the IOC, and the detection rule is misconfigured to trigger on file content reads rather than process execution or network connections.
nginx, apache2, httpd, iis) and the operation is a file read (ReadFile) rather than a process creation or network connection.grep or find command across log directories to search for known threat signatures during a