hashcat Forum
HashCat BruteForce Help usage - 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: HashCat BruteForce Help usage (/thread-11351.html)



HashCat BruteForce Help usage - jpsl - 03-19-2023

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 ?


RE: HashCat BruteForce Help usage - b8vr - 03-20-2023

(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.


RE: HashCat BruteForce Help usage - tilershadowy - 04-04-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.