Can't crack multiple hashes, only single - 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: Can't crack multiple hashes, only single (/thread-5446.html) |
Can't crack multiple hashes, only single - ChronoJim - 05-11-2016 I'm experiencing some odd behavior here. When I run a command on a file with a single hash, it works as expected. If I add a second line with a different hash I come up empty - it doesn't even crack the first one. I created several test SHA1 salted hashes using test1, test2, etc. I start with one line so my hash file looks like this: Code: test1:xxhashxx:xxsaltxx I run Code: cudahashcat60.exe -m 110 -a 3 --username -o test_cracked.txt test.hash test?d Code: test1:xxhashxx:xxsaltxx I run the same command but get no output in the test_cracked.txt file. The command terminates with a Status of exhausted: Code: Session.Name...: cudaHashcat I've tried it with several combinations of hashes, and it always works with one and always fails with more than one. I've checked to make sure there aren't trailing spaces at the end of the lines. Complete newbie here so it's probably something simple that I'm doing wrong, but I've simplified this as much as possible and can't get past it. Any help is appreciated. RE: Can't crack multiple hashes, only single - unix-ninja - 05-11-2016 Try using Unix-style encoding for newlines and see if that works any better. RE: Can't crack multiple hashes, only single - ChronoJim - 05-11-2016 (05-11-2016, 06:41 PM)unix-ninja Wrote: Try using Unix-style encoding for newlines and see if that works any better. Thanks for the suggestion. Tried that (also tried both UTF-8 & ANSI encoding) but I'm getting the same results. FWIW I'm using Notepad++. In an attempt to rule out the file format I copied the MD5 hashes from the example0.hash file and pasted them into my test file and it worked just fine. RE: Can't crack multiple hashes, only single - epixoip - 05-11-2016 Post your example hashes with the known passwords so we can test. RE: Can't crack multiple hashes, only single - ChronoJim - 05-11-2016 (05-11-2016, 07:36 PM)epixoip Wrote: Post your example hashes with the known passwords so we can test. Here they are. The known passwords are the same as the usernames (test1, test2...). Format is username/password:hash:salt Code: test1:08bb94656c09f3f243f3296e1b7e5e7b9663cf70:868930923161dcffc66dd73e29c33089a200d5e0 Thanks for looking into this. RE: Can't crack multiple hashes, only single - epixoip - 05-11-2016 I can confirm that there is a bug in 2.01, but it looks like it is fixed in beta: Code: epixoip@token:~/hashcat-3.00$ ./hashcat64.bin -d 1 -a 3 -m 110 --username --session test_cracked --quiet test.hash test?d RE: Can't crack multiple hashes, only single - atom - 05-13-2016 Wouldn't call it a bug, as it was always clear maximum supported salt length is 31. With hashcat v3.00 beta we just increased that length a bit. However, with those hashes with salt length 40, your maximum password length is 15 RE: Can't crack multiple hashes, only single - ChronoJim - 05-13-2016 (05-11-2016, 08:31 PM)epixoip Wrote: I can confirm that there is a bug in 2.01, but it looks like it is fixed in beta:Thanks for the confirmation. Now I can stop beating my head against the wall. (05-13-2016, 03:17 PM)atom Wrote: However, with those hashes with salt length 40, your maximum password length is 15The thing is, it works with salt length 40, but only for a single line. Thanks for the heads up about the 55 character limit, hadn't noticed that. |