Charset
#1
Hi.
I know my password consists of 8 characters, including lowercase letters, characters and numbers. How do I use the command now?
If i typing 
Quote:hashcat64.exe -a 3 -m 11300 --increment --increment-min 8 hash.txt ?l?d?h?s

I have a error invalid mask.
I will add that I do not know in what sequence
Reply
#2
Well from what I can see you want a minimum mask of 8, but you only provide 4 places ?
Reply
#3
(01-16-2021, 02:59 AM)MeFiS91 Wrote: Hi.
I know my password consists of 8 characters, including lowercase letters, characters and numbers. How do I use the command now?
If i typing 
Quote:hashcat64.exe -a 3 -m 11300 --increment --increment-min 8 hash.txt ?l?d?h?s

I have a error invalid mask.
I will add that I do not know in what sequence

I think what you want to achieve is to have minimum 8 characters and all of them tested agains lower, symbols etc. 
hashcat64.exe -a 3 -m 11300 hash.txt -1 ?l?d?s ?1?1?1?1?1?1?1?1. Should be something like that. So you define character set 1 and then make a mask for 8 characters.?
edit: since u know it’s 8 characters, no need to increment.
Reply
#4
(01-16-2021, 02:59 AM)MeFiS91 Wrote: Hi.
I know my password consists of 8 characters, including lowercase letters, characters and numbers. How do I use the command now?
If i typing 
Quote:hashcat64.exe -a 3 -m 11300 --increment --increment-min 8 hash.txt ?l?d?h?s

I have a error invalid mask.
I will add that I do not know in what sequence


it will be :

hashcat64.exe -w 4 -a 3 -m 11300 -1 ?l?s?d hash.txt ?1?1?1?1?1?1?1?1
Reply
#5
Now I understand. For example, if I have a password without symbols, it will
.... -1 ?l?u?d hash.txt ?1?1?1?1?1?1?1?1
Reply
#6
either and it doesn't work.
As normal for 7 characters, I have time left 6 days.
With ....-1 ?l?s?d hash.txt ?1?1?1?1?1?1?1 174 days.
Reply
#7
(01-17-2021, 09:29 AM)MeFiS91 Wrote: either and it doesn't work.
As normal for 7 characters, I have time left 6 days.
With ....-1 ?l?s?d hash.txt ?1?1?1?1?1?1?1 174 days.

Yes because you chose to use Letters Symbols and Digits combined.

For 7 different chars.
Reply