← Back to SOC feed Coverage →

ThreatFox: MimiKatz IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
credential-theftiocthreatfoxwin-mimikatz
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-08T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of known MimiKatz indicators, which adversaries deploy to extract plaintext credentials from Windows memory for lateral movement and privilege escalation. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify compromised endpoints early, preventing attackers from leveraging stolen credentials to expand their foothold across the environment.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
md5_hashfec27228340485485f6902f8759bbd62payload2026-09-0895%
sha256_hashf9d53fdcc12d548e6c9bd395642f30d2b2c6a9a4204bc0948badf8a7c571c072payload2026-09-0895%
sha1_hash07b35a3b431e653ddcf36cecd49793d538e2aa79payload2026-09-0895%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - MimiKatz
let malicious_hashes = dynamic(["fec27228340485485f6902f8759bbd62", "f9d53fdcc12d548e6c9bd395642f30d2b2c6a9a4204bc0948badf8a7c571c072", "07b35a3b431e653ddcf36cecd49793d538e2aa79"]);
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.mimikatz/