hashcat Forum
Integer overflow detected in keyspace of wordlist - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Developer (https://hashcat.net/forum/forum-39.html)
+--- Forum: hashcat (https://hashcat.net/forum/forum-40.html)
+--- Thread: Integer overflow detected in keyspace of wordlist (/thread-11691.html)



Integer overflow detected in keyspace of wordlist - Faber - 11-19-2023

Translator


Hello,
maybe someone can help me to resolve this error.

I've create a simple mask 12 chars + dict append (4 words in dict), but I receive this error:

Integer overflow detected in keyspace of wordlist: mydom.dict


hashcat.exe -a 7 -w 4 -m 11300 myhash.txt -o found.txt -1 ?l?d ?1?1?1?1?1?1?1?1?1?1?1?1 mydom.dict 



With mask 11 chars working fine :-(


Thank you in advance


RE: Integer overflow detected in keyspace of wordlist - drsnooker - 11-19-2023

Perhaps I'll repeat my previous comments for the developer to catch this particular error and print a different message....

(10-17-2022, 07:16 PM)drsnooker Wrote: Perhaps a change in error message might be helpful? 
Like: "Used mask has too many entries" or "number of permutations of the used mask exceeds the 2^64 limit"
That would eliminate many new threads in this forum....



RE: Integer overflow detected in keyspace of wordlist - Faber - 11-19-2023

In my case it's not the solution. 12 chars working if alone, but stop to work when I add a fix part that don't going to exceede the limit.

Ex:
.\hashcat.exe -a 3 -w 4 -m 11300 myhash.txt -o found.txt -1 ?l?d ?1?1?1?1?1?1?1?1?1?1?1?1 - working
.\hashcat.exe -a 3 -w 4 -m 11300 myhash.txt -o found.txt -1 ?l?d ?1?1?1?1?1?1?1?1?1?1?1?1abc - not workin


RE: Integer overflow detected in keyspace of wordlist - drsnooker - 11-19-2023

(11-19-2023, 11:41 PM)Faber Wrote: In my case it's not the solution. 12 chars working if alone, but stop to work when I add a fix part that don't going to exceede the limit.

Ex:
.\hashcat.exe -a 3 -w 4 -m 11300 myhash.txt -o found.txt -1 ?l?d ?1?1?1?1?1?1?1?1?1?1?1?1 - working
.\hashcat.exe -a 3 -w 4 -m 11300 myhash.txt -o found.txt -1 ?l?d ?1?1?1?1?1?1?1?1?1?1?1?1abc - not workin

How many years to complete that one?


RE: Integer overflow detected in keyspace of wordlist - Faber - 11-20-2023

Translator


(11-19-2023, 10:50 PM)drsnooker Wrote: Perhaps I'll repeat my previous comments for the developer to catch this particular error and print a different message....

(10-17-2022, 07:16 PM)drsnooker Wrote: Perhaps a change in error message might be helpful? 
Like: "Used mask has too many entries" or "number of permutations of the used mask exceeds the 2^64 limit"
That would eliminate many new threads in this forum....

(11-19-2023, 11:51 PM)drsnooker Wrote:
(11-19-2023, 11:41 PM)Faber Wrote: In my case it's not the solution. 12 chars working if alone, but stop to work when I add a fix part that don't going to exceede the limit.

Ex:
.\hashcat.exe -a 3 -w 4 -m 11300 myhash.txt -o found.txt -1 ?l?d ?1?1?1?1?1?1?1?1?1?1?1?1 - working
.\hashcat.exe -a 3 -w 4 -m 11300 myhash.txt -o found.txt -1 ?l?d ?1?1?1?1?1?1?1?1?1?1?1?1abc - not workin

How many years to complete that one?

mah very much, but it's irrilevant, it must to start without errors. It's a bug I think


RE: Integer overflow detected in keyspace of wordlist - Chick3nman - 11-20-2023

This is not a bug. Your mask keyspace is too large. You cannot start with a mask that big. The limits for hybrid mode are smaller than the limits for mask mode.


RE: Integer overflow detected in keyspace of wordlist - Faber - 11-20-2023

How fixed part can increase the number of combinations ? cannot do it, it's fixed. I think the bug still that calc based on number of chars and not on the effective dynamic chars


RE: Integer overflow detected in keyspace of wordlist - hellohihi - 11-24-2023

The password in the defined wordlist exceeds the 2^64 limit.