decrypt with dictionary
#1
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 ???
Reply
#2
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
Reply