hashcat Forum

Full Version: How to say that the password starts with "abc"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I know that the password starts with specific characters.

How should I run hashcat so that it knows that the password starts with "abc"?
What type of hashes do you use (there are salted hashes, where you can use abc as salt)?
What type of attack mode are you planning to use? for word list/dictionary attack you can just add a rule that prepends abc: ^c ^b ^a
(11-16-2017, 12:35 PM)philsmd Wrote: [ -> ]What type of hashes do you use (there are salted hashes, where you can use abc as salt)?
What type of attack mode are you planning to use? for word list/dictionary attack you can just add a rule that prepends abc: ^c ^b ^a

I'm trying to crack an MD5 hash with a mask attack. Is it possible?
It is possible. Just use mask that starts with "abc", for example "abc?a?a?a". You can also use modifier "--increment", that way you can type one long mask (abc?a?a?a?a?a?a?a?a) and hashcat will try to crack passwords of different length.