Basic command-line bruteforce dictionary generator written in C++
Basic bruteforce dictionary generator written in C++, with a focus on maximum efficiency and generation speed.
Fastest way to build the project:
mkdir Release
cd Release
cmake .. -DCMAKE_BUILD_TYPE=Release
make
./Bruty
Usage: bruty charset length [-s]
0
: lowercase letters1
: lowercase letters and digits2
: lowercase and uppercase letters3
: lowercase and uppercase letters and digits4
: lowercase and uppercase letters, digits and symbolsTests performed on a Macbook Air M1
bruty 0 6 > out.txt
: 10.3 secondscrunch 6 6 abcdefghijklmnopqrstuvwxyz > out.txt
: 30.0 secondsSo bruty appears to be around 3x faster than crunch.