EvilZone
Programming and Scripting => C - C++ => : daxda April 11, 2014, 01:13:23 PM
-
This is my first "real" C++ program I've ever written, it's an MD5 hash cracker which uses a wordlist
to find the equivalent cleartext. The github repo can be found here (https://github.com/Daxda/wordlist_cracker).
Usage is straight forward:
./wordlist_cracker -h <your MD5 hash here> -w <your wordlist here>
To compile the cracker run the included "build.sh" script, the help message of the cracker will be printed
to stdout when the compilation succeeded.
Known bugs (and other animals):
- Relative paths for the -w argument don't work, I might have to figure out how to work
with them at some point. - ...
-
This looks *more* like real C than it does C++ to me, but nonetheless not bad. :)