C++ MD5 Bruteforcer
It was stated in the description of the code that one must have "md5.cpp" and also "md5.h" for the MD5 functions and encryption templates (something like that).
I was wondering if someone could point me in the direction of them? I have Google'd my problem and nothing has come up. I even searched on here.
I would really appreciate it! Thank you!
Meatwad
Here's the link: http://www.hellboundhackers.org/code/readcode.php?id=14
I remember reading about that code and I also was curious about origin of this "md5.h" header file.
there are three possible cases.
- md5.h is one of C++ cryptography library file
- author made md5.h for him self but didn't share.
- author made a simple string comparing code and leave the hardest part, changing string to hash, to users.
I'm pretty sure it's not in C++ cryptography library, but I could be wrong.
I don't know why any one would present only fraction of work if he was to present at all….
therefor I personally think it's 3rd case.
And if i understand the code correctly it's more of dictionary attack then bruteforce. it take string from a password list file and compare…
you can make bruteforcer with password list, but it's so inefficient…
And if i understand the code correctly it's more of dictionary attack then bruteforce. it take string from a password list file, [hashes it], and compare…
That is a form of brute forcing.
It is not hard to find a library which has an md5 function. http://hashlib2plus.sourceforge.net/ Come on, we don't live in the B.G. era anymore. You have no excuse.
/me does a Google Search with GET LUCKY chosen…This is the site I got…
http://www.stillhq.com/extracted/usblogdump/md5.h
LOOK you got yerself md5.h
Now all you have to do is attach this library to your code and BOOM you have md5 capabilities!