Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.

ghost's Avatar
0 0

How to crack n times md5 encryption??


ghost's Avatar
0 0

Why not write your own brute forcer or dictionary attack where you take the variable 'i' and do md5(md5(i)) then compare that to the hash and see if you get a positive result. (thats for n = 2). Most rainbow tables programs generally look for n = 1 where the hash is one step away from the password, so make your own.

Here is an example of a python brute force password cracker… just adjust it to do an n md5 calc in the function "def checkPassword(password)"

http://www.rbgrn.net/blog/2007/09/how-to-write-a-brute-force-password-cracker.html