EvilZone

Programming and Scripting => C - C++ => : daxda April 11, 2014, 01:13:23 PM

: [C++] Wordlist cracker
: 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):
: Re: [C++] Wordlist cracker
: ArkPhaze April 14, 2014, 05:43:34 AM
This looks *more* like real C than it does C++ to me, but nonetheless not bad. :)