Skip to content

Commit

Permalink
Updated hashcat.py to use new 22000 hash format
Browse files Browse the repository at this point in the history
Hashcat does not like using the older 2500 hash format with the new output from HcxPcapngTool. 22000 hash format should be used instead.
  • Loading branch information
soaringswine committed Oct 10, 2020
1 parent d8a6628 commit 727622f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wifite/tools/hashcat.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def crack_handshake(handshake, show_command=False):
command = [
'hashcat',
'--quiet',
'-m', '2500',
'-m', '22000',
hccapx_file,
Configuration.wordlist
]
Expand Down

0 comments on commit 727622f

Please sign in to comment.