Detect password hash cracking tool execution on a host
Matches process creation of known password-hash cracking binaries, which is MITRE's HashToolName knob from AN0292 written out as an Image list. Cracking is overwhelmingly an offline activity performed on adversary-controlled hardware, so this rule does not observe the cracking — it observes the tooling appearing on a managed host, which is the only part of the behaviour that reaches endpoint telemetry at all. AN0292's other signals are a correlation: the preceding SAM/SYSTEM/NTDS.dit access named by FilePathIndicators, then sustained CPU or GPU load while the tool runs. Sigma can express neither a join nor a resource-usage threshold, so nothing here pretends to; the rule matches on Image alone, which every backend renders, at the cost of missing a renamed binary. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0105, not hand-written and not tested by its author. Any lab result is on this rule's own page.Full descriptionShow less
The detection
The 4 SIEM queries below are previews produced by Siemphony’s own translator, not pySigma, and none has been executed against a real backend — review before you deploy.
detection.yml
Sentinel · KQL
Run this as a search.
DeviceProcessEvents| where (FolderPath endswith "\\hashcat.exe" or FolderPath endswith "\\hashcat32.exe" or FolderPath endswith "\\hashcat64.exe" or FolderPath endswith "\\hashcat-legacy.exe" or FolderPath endswith "\\john.exe" or FolderPath endswith "\\john-omp.exe" or FolderPath endswith "\\john-mmx.exe" or FolderPath endswith "\\ophcrack.exe" or FolderPath endswith "\\rcrack.exe" or FolderPath endswith "\\rcracki_mt.exe" or FolderPath endswith "\\l0phtcrack.exe")
Splunk · SPL
Run this as a search.
index=* (Image="*\\hashcat.exe" OR Image="*\\hashcat32.exe" OR Image="*\\hashcat64.exe" OR Image="*\\hashcat-legacy.exe" OR Image="*\\john.exe" OR Image="*\\john-omp.exe" OR Image="*\\john-mmx.exe" OR Image="*\\ophcrack.exe" OR Image="*\\rcrack.exe" OR Image="*\\rcracki_mt.exe" OR Image="*\\l0phtcrack.exe")Elastic · ES|QL
Run this as a search.
FROM logs-*| WHERE (TO_LOWER(process.executable) LIKE "*\\\\hashcat.exe" OR TO_LOWER(process.executable) LIKE "*\\\\hashcat32.exe" OR TO_LOWER(process.executable) LIKE "*\\\\hashcat64.exe" OR TO_LOWER(process.executable) LIKE "*\\\\hashcat-legacy.exe" OR TO_LOWER(process.executable) LIKE "*\\\\john.exe" OR TO_LOWER(process.executable) LIKE "*\\\\john-omp.exe" OR TO_LOWER(process.executable) LIKE "*\\\\john-mmx.exe" OR TO_LOWER(process.executable) LIKE "*\\\\ophcrack.exe" OR TO_LOWER(process.executable) LIKE "*\\\\rcrack.exe" OR TO_LOWER(process.executable) LIKE "*\\\\rcracki_mt.exe" OR TO_LOWER(process.executable) LIKE "*\\\\l0phtcrack.exe")
Wazuh · XML rule
Deploy to your manager — this is a rule, not a search.
<group name="sigma,windows,process_creation,"> <!-- Rule ids must be unique on your manager; 100000+ is the user range. --> <rule id="100000" level="12"> <!-- Set <if_sid> to the decoder/base rule for windows so this only evaluates relevant events. --> <field name="Image" type="pcre2">(?i)(\\hashcat\.exe$|\\hashcat32\.exe$|\\hashcat64\.exe$|\\hashcat-legacy\.exe$|\\john\.exe$|\\john-omp\.exe$|\\john-mmx\.exe$|\\ophcrack\.exe$|\\rcrack\.exe$|\\rcracki_mt\.exe$|\\l0phtcrack\.exe$)</field> <description>Detect password hash cracking tool execution on a host</description> <mitre> <id>T1110.002</id> </mitre> </rule></group>
Verdicts · reactions · comments
Community
Verdicts from engineers who actually deployed it, and the conversation around it.
Nobody has run this in a real environment and said what happened.
Verdicts from engineers who deployed it
0 castNo verdicts reported yet. The first one is worth more than the tenth — say what you ran it against.
Log in to report a verdict.
Log in to join the discussion.
No comments yet. Someone who deploys this will have something to say about it.