Speed reduction
#6
What epixoip means is the following, take the first 4 chars:

Quote:Input.Mode.....: Mask (?d?d?d?d?d?d?d?d?d?d?d?d?d111) [16]

?d?d?d?d = 10 * 10 * 10 * 10 = 10000

Quote:Input.Mode.....: Mask (111?d?d?d?d?d?d?d?d?d?d?d?d?d) [16]

?d?d?d?d = 1 * 1 * 1 * 10 = 10

What oclHashcat ideally needs, is a number > 256 to archieve full speed. There's no way to "fix" this because it's not a bug. For detailed information why it's not possible to change this read this: https://hashcat.net/events/p13/js-ocohaaaa.pdf page 23.

There's however a way to solve this for your special use case by using a salted variant of your hash. For example in case you try to crack sha1, take -m 120 and generate a file:

Quote:b89eaac7e61417341b710b727768294d0e6a277b:111

And then instead of using the mask:

111?d?d?d?d?d?d?d?d?d?d?d?d?d

use:

?d?d?d?d?d?d?d?d?d?d?d?d?d


Messages In This Thread
Speed reduction - by ankur - 10-13-2015, 11:50 AM
RE: Speed reduction - by epixoip - 10-13-2015, 11:55 AM
RE: Speed reduction - by ankur - 10-13-2015, 12:06 PM
RE: Speed reduction - by ankur - 10-13-2015, 06:45 PM
RE: Speed reduction - by epixoip - 10-14-2015, 01:46 AM
RE: Speed reduction - by atom - 10-14-2015, 09:46 AM