decrypt with dictionary - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: decrypt with dictionary (/thread-10485.html) |
decrypt with dictionary - ortiga88 - 11-28-2021 I am launching the following command with the keys correctly: hashcat -o -m 22000 --force pass.22000 ~/auditorias/rockyou.txt but it throws me the following error: No hash-mode matches the structure of the input hash. is there something i am missing ??? RE: decrypt with dictionary - ZerBea - 11-28-2021 Wrong command line options. On -o an outfile is mandatory. Please take a look at --help: Code: -o, --outfile | File | Define outfile for recovered hash | -o outfile.txt Also do not use --force, which prevent to show additional warnings: Code: --force | | Ignore warnings | Examples of command lines related to WPA are here: https://hashcat.net/wiki/doku.php?id=cracking_wpawpa2 e.g.: Code: $ hashcat -m 22000 hash.hc22000 wordlist.txt |