HackTool - Hashcat Password Cracker Execution

Execute Hashcat.exe with provided SAM file from registry of Windows and Password list to crack against

Sigma rule (View on GitHub)

 1title: HackTool - Hashcat Password Cracker Execution
 2id: 39b31e81-5f5f-4898-9c0e-2160cfc0f9bf
 3status: test
 4description: Execute Hashcat.exe with provided SAM file from registry of Windows and Password list to crack against
 5references:
 6    - https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1110.002/T1110.002.md#atomic-test-1---password-cracking-with-hashcat
 7    - https://hashcat.net/wiki/doku.php?id=hashcat
 8author: frack113
 9date: 2021/12/27
10modified: 2023/02/04
11tags:
12    - attack.credential_access
13    - attack.t1110.002
14logsource:
15    category: process_creation
16    product: windows
17detection:
18    selection_img:
19        Image|endswith: '\hashcat.exe'
20    selection_cli:
21        CommandLine|contains|all:
22            - '-a '
23            - '-m 1000 '
24            - '-r '
25    condition: 1 of selection_*
26falsepositives:
27    - Tools that use similar command line flags and values
28level: high

References

Related rules

to-top