Why isn't this working, and can someone fix it? - 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: Why isn't this working, and can someone fix it? (/thread-9097.html) |
Why isn't this working, and can someone fix it? - ongroddd - 04-02-2020 Hello! I would like to know why this isn't working and if someone could fix it for me, i'm trying to do a bruteforce but it just won't work, and I don't understand what i'm doing wrong, hashcat64 -m0 --show --username -a3 -o cracked.txt.txt hash.txt.txt RE: Why isn't this working, and can someone fix it? - blacktraffic - 04-02-2020 I think you need to re-order the arguments, so hash.txt needs to come earlier on, --show doesn't apply and -a3 requires a mask to be specified. The following works for me: hashcat64.exe -O -w3 -m0 --username hash.txt.txt -a3 ?a?a?a?a -o cracked.txt where hash.txt.txt is: someone:5f4dcc3b5aa765d61d8327deb882cf99 [ test hash ] RE: Why isn't this working, and can someone fix it? - ongroddd - 04-02-2020 Awesome, thanks man! |