This Python script generates a wordlist of passwords based on the combinations of input words provided. It's a handy tool for generating potential passwords for security testing or other purposes.
git clone https://github.com/h4jack/wordlistgenerator.git
cd wordlistgenerator
python main.py <filename> [-l <length>] [-v] <word1> <word2> ...
<filename>:
Name of the file to save the wordlist.-l, --length:
(Optional) Length of combined words (default: None).-v, --verbose:
(Optional) Enable verbose output.<word1> <word2> ...:
List of words to generate combinations from.
Generate a wordlist with combinations of words "hello", "@" and "123" and save it to a file named "wordlist.txt":
python main.py wordlist.txt -l 3 "hello" "@" "123"
- Customizable: You can specify the length of the combined words to generate varied password lengths.
- Verbose Output: Enable verbose mode to see detailed progress information while generating the wordlist.
- Flexible Input: Input any number of words to be combined into passwords.
Language: Python 3.x+
This project is licensed under the MIT License
If you have any feedback or suggestions, please feel free to create an issue or contact us.