Large IPB list issue - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Ancient Versions (https://hashcat.net/forum/forum-46.html) +--- Forum: Very old oclHashcat-plus Support (https://hashcat.net/forum/forum-23.html) +--- Thread: Large IPB list issue (/thread-1115.html) Pages:
1
2
|
Large IPB list issue - M@LIK - 04-24-2012 ok i'll try my best to describe the crazy situation : / i got 32k hashes all iPB2[md5(md5($salt).md5($pass))] first i ran them directly through some dicts and got positive results (~18k were found) now i wanted to run the rest with the same dictionary BUT with rules.. and every time i try to do so i get very weird numbers:: Code: Status.......: Running notice all 99.93% rejected >.< but its decreasing and after LONG time:: Code: Status.......: Running and the worst part is when i go with same rules and rockyou.txt:: finished after only 1:30 hours with good results @ the same speed 39Mhash/sec and even worse when i try the run the same command again:: Code: Status.......: Running >.< i barely think everything is clear to you.. but... any idea whats going on?? RE: Large IPB list issue - K9 - 04-24-2012 The words could be too long after they are modified by the rules. RE: Large IPB list issue - M@LIK - 04-24-2012 @K9:: then how do u explain the "Rejected" decrement along 9 hours?? and yes some rules may make it long.. but "$1" or "$1$2$3"??? : / RE: Large IPB list issue - undeath - 04-25-2012 It doesn't really decrement, but there is an overflow. The reason for having so many rejected ones appearing right after starting is simple: olchashcat-plus caches a part of the dict and at first sorts out every word to be rejected. After that it begins to run over whatever is left of that cached chunk. RE: Large IPB list issue - atom - 04-25-2012 yes that explains the rejects, but it still fullfills the buffer till its full or EOF before launching the kernel RE: Large IPB list issue - M@LIK - 04-25-2012 @atom:: sorry pal.. but i dont understand.. could u explain a little bit more : ) and the thing i really want to have explained is how i was able to run rockyou which has 14M words without any rejection and it finished in 1 hour! with the same rules.. problem is that i didnt keep any kind of log of printscreens to determine the difference >.< RE: Large IPB list issue - atom - 04-25-2012 While it buffers the words from the dictionary it checks if a word is undersized or oversized. If this is the case it adds for each word the number of RULES multiplied by the number of SALTS to the rejection counter. RE: Large IPB list issue - M@LIK - 04-26-2012 ok.. whats the solution?? split the hash file, sort the dict by length, remove the rules?? i already tried sorting the dict by length.. and it started with ZERO rejected but the same long numbers : / RE: Large IPB list issue - atom - 04-26-2012 yeah, split the hash file. in theory you can split by 1 since it will not make any speed difference in sum. multihash support for salted hashes has just been added because of the lazyness of some users RE: Large IPB list issue - M@LIK - 04-26-2012 @atom:: hmmm... ok lets say i can split the file by 1.. and add them to a batch file somehow,, don't think it won't so efficient due to reloading the dict and all with every single hash?? appreciate the help : ) |