- KrowK1ng - generator part
Wordlist generator that displays all possible variants of character combination taken from entered word/symbols.
Example:
User enters "ab" and then lenght of maximum string combination. The program will take all the characters from the string and will generate all string combinations in ascending order.
User input: ab
Minimum lenght: 3
Maximum lenght: 5
aaa
bbb
aab
...
bbbba
bbbbb
gcc wgen.c
then
./compiled > out.txt
gen.txt can be any file you want to store output.
TODO:
- Finish the code;
- Fill README;
- Add space detection;
- Add utf-8 support;
- Manage own headers;
- Port in another languages.
Depending on number of characters entered and maximum string length, your wordlist may occupy large amount of disk space.