des raw algorithm - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: General Talk (https://hashcat.net/forum/forum-33.html) +--- Thread: des raw algorithm (/thread-6313.html) |
des raw algorithm - tom.schneider - 02-19-2017 Hello, i was playing around with hashcat especially the des mode. what was making me curious, if use a generated test vector with 5000, 10000 and 2000 random key/plain/cipher blocks on my test hardware(hd7870) it takes around 3 years for each to complete, but the same is true for a set with 5x10^6 also the keyspace progress is about same. from my understanding there would be a significant difference. because if we test a key against plain or cipher (encode/decode) key expansion and IP just needs to be calculated ones and can be used in every thread but for the 16 rounds of F we need either plaintext or cipher and with this we need to iterate over every single block. even with many gpu cores and bit slicing, the difference is for my knowledge to big for the same results. can some one please point out how this is possible? -m 14000 des.vector -o our.txt -a 3 -1 charsets/DES_full.charset --hex-charset ?1?1?1?1?1?1?1?1 -w 4 RE: des raw algorithm - atom - 02-20-2017 DES cracking is pretty fast with a decent GPU. Quote:root@et:~/hashcat# ./hashcat -m 14000 hash --hex-charset -1 charsets/DES_full.charset -a 3 ?1?1?1?1?1?1?1?1 So, 5.5 days in the middle for full keyspace RE: des raw algorithm - tom.schneider - 02-20-2017 Thanks for your response, of course this makes sense for a single hash but in this case i generated multiple hashes with unique cipher and plain evenly distributed over the keyspace, and the speed was the same, i can see that the progress max is going up. i guess the time estimate is just on its upper end. or is it a estimation when the next hash will be complete? What i don't get is: Hashes 3: Progress.........: 759169024/216172782113783808 (0.00%) Hashes 100: Progress.........: 654311424/7205759403792793600 (0.00%) Hashes 50000: Progress.........: 654311424/5764607523034234880 (0.00%) Hashes 1000000: Progress.........: 645922816/4611686018427387904 (0.00%) <- Overflow ??? So is this mean that blocks with differentsh. It does not matter if you are willing to pay. plain text will be checked consecutive adding up to the overall work. So basically like generate keys, encrypt unique plain text, check against bloom filter or else. for all hashes before going to the next? RE: des raw algorithm - atom - 02-21-2017 Sure the ETA goes up but not because of the code (so bloom filter is integrated already) it is because the number of salts increase. Your attack, whatever you're doing, is somehow not cleanly designed. The best way to solve it is to patch the kernel. |