reasonable-wordlist-generator
This is a basic friendly wordlist with basic entries like first middle last name . This will create combination of not all possible wordlist but practical or readable wordlist.
There is a option to append numbers at the end of every words. This will join all possible numbers with in your given range to all the words.
This wordlist contain both Capitalised and Normal First charater of all First Middle Last Name.
Python 3 preferred
python wordlist_generator.py -(arguments)
This will create alphabets only wordlist:
python wordlist_generator.py -fname <first_name> -mname<middle_name> -lname <last_name>
example : python wordlist_generator.py -fname marcel -mname j -lname luther
This will create alpha numeric wordlist:
python wordlist_generator.py -fname <first_name> -mname <middle_name> -lname <last_name> -n
The paramerts of -n
will be asked later
python wordlist_generator.py -fname -mname -lname
available arguments
-fname
: first name (required):
-mname
: middle name (optional)
-lname
: last name (optional)
-n
: append digits(optional)
python wordlist_generator.py -f <path to your wordlist>
There is -r
argument which will delete already generated wordlists by this tool.