From 727622f3e1b76e4cbd966c8c86b91793950ebba1 Mon Sep 17 00:00:00 2001 From: soaringswine Date: Sat, 10 Oct 2020 02:44:56 -0400 Subject: [PATCH] Updated hashcat.py to use new 22000 hash format Hashcat does not like using the older 2500 hash format with the new output from HcxPcapngTool. 22000 hash format should be used instead. --- wifite/tools/hashcat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wifite/tools/hashcat.py b/wifite/tools/hashcat.py index 4c652ea1b..eea9639fd 100755 --- a/wifite/tools/hashcat.py +++ b/wifite/tools/hashcat.py @@ -34,7 +34,7 @@ def crack_handshake(handshake, show_command=False): command = [ 'hashcat', '--quiet', - '-m', '2500', + '-m', '22000', hccapx_file, Configuration.wordlist ]