ERROR: restore value greater keyspace - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old oclHashcat Support (https://hashcat.net/forum/forum-38.html) +--- Thread: ERROR: restore value greater keyspace (/thread-3987.html) |
ERROR: restore value greater keyspace - skalderis - 01-16-2015 Can't restore wpa progress with 1.32. Catalyst 14.9 Win7.64bit. It starts fine from the start (no -s). And everything works fine with 1.31. Code: D:\oclHashcat>oclHashcat64.exe -m 2500 -a 3 -w 3 -s 61867462616 e:\test.hccap -1 qwertyupasdfghjklzxcvbnm ?1?1?1?1?1?1?1?1 EDIT: restore value is not greater. 24^8=110075314176 RE: ERROR: restore value greater keyspace - epixoip - 01-16-2015 You are calculating keyspace incorrectly. You're calculating the "real keyspace," and not the "oclHashcat keyspace." The keyspace value oclHashcat uses is the keyspace of the base loop. The --keyspace switch will calculate this value for you. With your mask, the base loop keyspace is 7962624, which is far less than 61867462616. This is why oclHashcat tells you the restore value is greater than the keyspace. Given the real keyspace and the keyspace of the base loop, you should be able to trivially calculate the keyspace of the modifier loop, and then use that value to derive your skip value. I'll leave this as an exercise for the reader. RE: ERROR: restore value greater keyspace - skalderis - 01-16-2015 Thanks for the reply. My guess it has to do something with last update on "slow hash candidate amplifiers, ported from CPU to GPU". Correct -s is 4475366 Thanks for that! |