Posts: 4
Threads: 1
Joined: Nov 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
Posts: 103
Threads: 2
Joined: Jul 2016
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....
Posts: 4
Threads: 1
Joined: Nov 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
Posts: 103
Threads: 2
Joined: Jul 2016
(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?
Posts: 4
Threads: 1
Joined: Nov 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
Posts: 407
Threads: 2
Joined: Dec 2015
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.
Posts: 4
Threads: 1
Joined: Nov 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
Posts: 10
Threads: 6
Joined: Aug 2021
The password in the defined wordlist exceeds the 2^64 limit.