Welcome to HBH! If you had an account on hellboundhacker.org you will need to reset your password using the Lost Password system before you will be able to login.

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