Integer overflow detected in keyspace of mask - 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: Integer overflow detected in keyspace of mask (/thread-9642.html) |
Integer overflow detected in keyspace of mask - crinny - 11-16-2020 I have a hashed string that goes something like this: 392428176.27.938888368973832043. The length is always constant, and the first value (392428176 in this case) is already known. I have made the following mask for hashcat: Code: 392428176.?d?d.?d?d?d?d?d?d?d?d?d?d?d?d?d?d?d?d?d?d But upon running the hashcat (hashcat -m 0 -a 3 hash.txt mask.hcmask), I am getting this error: Integer overflow detected in keyspace of mask. As far as I am aware, there are 20^10 possibilities of my mask. What is going wrong? RE: Integer overflow detected in keyspace of mask - Chick3nman - 11-17-2020 It's 10^20 possibilities. RE: Integer overflow detected in keyspace of mask - DanielG - 11-17-2020 Okay let's say you bought a new Nvidia 3090 card as described on https://hashcat.net/forum/thread-9531.html. And let's say your algorithm is the fastest there, MD5 at 66690.4 MH/s. It would still take 47 years to run through those possibilities. Your mask is just to big. |