hey am i doing anything wrong? - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Developer (https://hashcat.net/forum/forum-39.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-40.html) +--- Thread: hey am i doing anything wrong? (/thread-6215.html) |
hey am i doing anything wrong? - robbierayrob - 01-19-2017 Ive done this command and i really don't know what i am doing wrong hashcat64.exe -m3200 --weak-hash-threshold=0 --potfile-disable $2y$06******************************************* rockyou.txt but keep ending up with 0 recovered, im pretty sure the hash i am cracking isn't a bunch of mumble jumbo, but instead 2 words combined. -kind regards Robert RE: hey am i doing anything wrong? - philsmd - 01-19-2017 Hashcat won't crack the hash with attack mode 0 (-a 0) if the password is not present within the dictionary file (in your case the file rockyou.txt). Make sure that you know the password and that it is present within the word list. RE: hey am i doing anything wrong? - robbierayrob - 01-19-2017 (01-19-2017, 01:34 PM)philsmd Wrote: Hashcat won't crack the hash with attack mode 0 (-a 0) if the password is not present within the dictionary file (in your case the file rockyou.txt). oh okay thx, should i try brute forcing then? like just generates random characters and compares it to the hash like ?d?d?d?d ??? RE: hey am i doing anything wrong? - atom - 01-19-2017 If the password matches ?d?d?d?d then you should that. If not, then not. |