← Back to SOC feed Coverage →

ThreatFox: MASS Logger IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
iocthreatfoxwin-masslogger
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-21T23:00:01Z · Confidence: high

Hunt Hypothesis

This hunt identifies potential compromises involving the MASS Logger, a tool frequently used by adversaries to capture sensitive data such as credentials and session tokens from web browsers. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to detect stealthy credential harvesting activities that may bypass traditional network-based detections, thereby reducing the window of opportunity for lateral movement or privilege escalation.

IOC Summary

Malware Family: MASS Logger Total IOCs: 3 IOC Types: sha1_hash, md5_hash, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
md5_hash26c0130537d14afcacdde5779d049d84payload2026-09-2195%
sha256_hash6e81b7f584f9bf03977a97fa1eed6deb1494f4a46a8ce65035a0e4a12e01172bpayload2026-09-2195%
sha1_hashe60e309db655ace6222527a896a7286a9efc0696payload2026-09-2195%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - MASS Logger
let malicious_hashes = dynamic(["26c0130537d14afcacdde5779d049d84", "6e81b7f584f9bf03977a97fa1eed6deb1494f4a46a8ce65035a0e4a12e01172b", "e60e309db655ace6222527a896a7286a9efc0696"]);
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.masslogger/