Posts: 7
Threads: 3
Joined: Aug 2019
So I'm looking to hack a password it’s 7 character long. The first 6 are the lower case the last Is as digit 0-9, the passwords are hashed in md5. How would I go about cracking thisI have a hash and cracked file in the hashcat folder.
Thanks, guys really loving hash cat so far and would love to learn more about cybersecurity.
Posts: 2,267
Threads: 16
Joined: Feb 2013
-a 3 ?l?l?l?l?l?l?d
?l = dollar lower-case ELL = lowercase characters a-z
?d = digits = any number from 0-9
Posts: 7
Threads: 3
Joined: Aug 2019
(08-16-2019, 01:36 PM)philsmd Wrote: -a 3 ?l?l?l?l?l?l?d
?l = dollar lower-case ELL = lowercase characters a-z
?d = digits = any number from 0-9
What other stuff do I put int the command don't I have to put hashcat64 and some other stuff inft
Posts: 101
Threads: 34
Joined: Oct 2014
hashcat64 -a 3 -m 0 hashfilename ?l?l?l?l?l?l?d -o Outputfilename
Posts: 7
Threads: 3
Joined: Aug 2019
(08-16-2019, 05:25 PM)slawson Wrote: hashcat64 -a 3 -m 0 hashfilename ?l?l?l?l?l?l?d -o Outputfilename
Thanks this really helps, the is so muxh