Posts: 3
Threads: 2
Joined: Mar 2023
03-19-2023, 07:38 PM
(This post was last modified: 03-19-2023, 07:39 PM by jpsl.)
I have a sha256hash with this value XCehCf3Awy
it has Upper case ,Lower Case and Numbers
is the best method for this hash -a 3 ( BF)?
and im trying to use it like this :
hashcat -m 1400 -a 3 test.hash ?a?a?a?a?a?a?a?a?a?a
But Im getting this error :
Integer overflow detected in keyspace of mask: ?a?a?a?a?a?a?a?a?a?a
what is the correct usage for option -a 3 ?
Posts: 119
Threads: 1
Joined: Apr 2022
03-20-2023, 01:26 AM
(This post was last modified: 03-20-2023, 01:28 AM by b8vr.)
(03-19-2023, 07:38 PM)jpsl Wrote: I have a sha256hash with this value XCehCf3Awy
it has Upper case ,Lower Case and Numbers
is the best method for this hash -a 3 ( BF)?
and im trying to use it like this :
hashcat -m 1400 -a 3 test.hash ?a?a?a?a?a?a?a?a?a?a
But Im getting this error :
Integer overflow detected in keyspace of mask: ?a?a?a?a?a?a?a?a?a?a
what is the correct usage for option -a 3 ?
Your use case is correct, it's just that you are giving it a very large keyspace. I think ?a is about 95 characters or so, meaning you're feeding it a keyspace of 95^10, which is quite large.
If there's no need for special chars, don't use ?a.
Instead use -1 ?l?u?d ?1?1?1?1?1?1?1?1?1?1
It will decrease the keyspace to 62^10. Still a lot, but maybe more manageable.
Posts: 1
Threads: 0
Joined: Apr 2023
(03-20-2023, 01:26 AM)b8vr Wrote: (03-19-2023, 07:38 PM)jpsl Wrote: I have a sha256hash with this value XCehCf3Awy
it has Upper case ,Lower Case and Numbers
is the best method for this hash -a 3 ( BF)?
and im trying to use it like this :
hashcat -m 1400 -a 3 test.hash ?a?a?a?a?a?a?a?a?a?a
But Im getting this error :
Integer overflow detected in keyspace of mask: ?a?a?a?a?a?a?a?a?a?a
what is the correct usage for option -a 3?
Your use case is correct, it's just that you are giving it a very large keyspace. I think ?a is about 95 characters or so, meaning you're feeding it a keyspace of 95^10, which is quite large.
Instead use -1 ?l?u?d ?1?1?1?1?1?1?1?1?1?1redactle
It will decrease the keyspace to 62^10. Still a lot, but maybe more manageable.
After I fixed it according to your instructions, it worked properly. Thank you.