0% progress - 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: 0% progress (/thread-8082.html) |
0% progress - scriptkiddie - 01-19-2019 Hi guys. So I have the hash and pre-generated file(.txt) with N passwords. I run this command: hashcat64.exe -m 13400 -a 0 hash.txt passes.txt --status And it starts its work, but all the time I have this status: Code: Guess.Queue......: 1/1 (100.00%) Code: Status...........: Exhausted RE: 0% progress - royce - 01-19-2019 'Rejected' means 'password candidate was inapplicable' (such as if it was too long or too short for that hash algorithm) rather than 'password candidate was tried and it didn't work'. Recommendation: set up an attack that you know will work, run it, and observe the difference. RE: 0% progress - scriptkiddie - 01-19-2019 (01-19-2019, 07:42 PM)royce Wrote: 'Rejected' means 'password candidate was inapplicable' (such as if it was too long or too short for that hash algorithm) rather than 'password candidate was tried and it didn't work'. Thank you for an answer to my silly question! I followed your recommendation and it turns out that "progress" is always 0 till the end(where it turns 100%). Might be bug? P.S. Also now I am sure that my generated passwords are all wrong. Time to think a bit more! RE: 0% progress - royce - 01-19-2019 Progress in this context is 'how many hashes were successfully cracked'. So if you're only cracking a single hash, progress will always be either 0 or 100. RE: 0% progress - undeath - 01-19-2019 @royce: no it's not. Progress is the number of tried candidates divided by the total amount of candidates. The reason you can only see 0%/100% here is that your wordlist is very small (meaning N is very small) and all candidates end up in the same chunk. Hence there is no other progress checkpoint. |