Skip to content

Latest commit

 

History

History
63 lines (42 loc) · 1.25 KB

File metadata and controls

63 lines (42 loc) · 1.25 KB

Wordlist Generator

Code:OK Status:🛠Improving

Lang:C


Special thanks


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

How to run

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.

⚠ Caution ⚠

Depending on number of characters entered and maximum string length, your wordlist may occupy large amount of disk space.