01-29-2011, 01:38 PM
(01-28-2011, 06:51 PM)maceface Wrote: mate would you like to share the experience and what exactly did you typed? I mean the whole command you've typed to crack the password. I have hash from joomla 1.5 also and I was having troubles all day because i didnt know the exact parameters . Please share this information with me.
Ah sorry I didn't see that you wrote here.
You should take some time to read the --help in the application to learn it by yourself, because it's not that hard
But anyway, this is how I did it.
Place the password+hash in a file (hash.list for example), and make sure the pass is in this format:
passalt
Then run this command.
Code:
./oclHashcat32.bin hash.list --increment -m 1 -1 ?l?u?d ?1?1?1?1 ?1?1?1?1
This command says the following:
*Increment from min to max word length (starts at the min word length and goes to the one you defined) = --increment
*Set mode 1, which is md5(pass.salt) = -m 1
*Set custom charset to lower, upper and digits = -1 ?l?u?d
*Set the right and left mask to the total of 8 character length (max length with --increment basically, using the custom charset of -1 that you defined) = ?1?1?1?1 ?1?1?1?1
Hope this helps