Posts: 26
Threads: 16
Joined: Aug 2018
Hello forum
since the password was not found with the following command(wordlist), I have to switch to bf
# hashcat -m 1000 -a 0 --force --show --username hash.txt wordlist.lst
Questions:
- What would be a good rule for a-zA-Zo-9 and (the following 3 chars) - _ &
- max password-length: 10 chars
Thank you very much in advance!
Joe
Posts: 64
Threads: 1
Joined: Mar 2017
(07-29-2022, 04:19 PM)joe123 Wrote: Hello forum
since the password was not found with the following command(wordlist), I have to switch to bf
# hashcat -m 1000 -a 0 --force --show --username hash.txt wordlist.lst
Questions:
- What would be a good rule for a-zA-Zo-9 and (the following 3 chars) - _ &
- max password-length: 10 chars
Thank you very much in advance!
Joe
https://hashcat.net/wiki/doku.php?id=mask_attack
Posts: 888
Threads: 15
Joined: Sep 2017
07-30-2022, 11:06 AM
(This post was last modified: 07-30-2022, 02:01 PM by Snoopy.)
(07-29-2022, 04:19 PM)joe123 Wrote: Hello forum
since the password was not found with the following command(wordlist), I have to switch to bf
# hashcat -m 1000 -a 0 --force --show --username hash.txt wordlist.lst
this commandline is faulty, --show tries to show already cracked passwords (in your potfile), this command has never tried cracking your hash.txt with your wordlist.txt
also NEVER NEVER NEVER use --force
Posts: 26
Threads: 16
Joined: Aug 2018
Thank's a lot guys for your help/feedback! Is thre somebody who could help me to craft a mask for:
- a-zA-Zo-9 and (the following 3 chars) - _ &
- max password-length: 10 chars
Thank you very much in advance!
Joe
Posts: 888
Threads: 15
Joined: Sep 2017
(07-30-2022, 02:18 PM)joe123 Wrote: Thank's a lot guys for your help/feedback! Is thre somebody who could help me to craft a mask for:
- a-zA-Zo-9 and (the following 3 chars) - _ &
- max password-length: 10 chars
Thank you very much in advance!
Joe
masks are very simple to define, use this line in a maskfile
mask.file
Code:
?l?u?d-_&,?1?1?1?1?1?1?1?1?1?1
use this with --increment and you will be fine
hashcat -m1000 -a3 -O -w3 --increment hash.txt mask.file
Posts: 26
Threads: 16
Joined: Aug 2018
Thank you very much Snoopy for the continued help!
-> ?l?u?d
Does this really mean a-zA-Zo-9?
Thank's!
Joe
Posts: 119
Threads: 1
Joined: Apr 2022
(08-03-2022, 04:59 PM)joe123 Wrote: Thank you very much Snoopy for the continued help!
-> ?l?u?d
Does this really mean a-zA-Zo-9?
Thank's!
Joe
Yes. ?l for lowercase a-z, ?u for uppercase A-Z and ?d for digits 0-9.
Posts: 26
Threads: 16
Joined: Aug 2018
Thank you for your help!
Joe