https://github.com/h4jack/wordlistgenerator
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.
https://github.com/h4jack/wordlistgenerator
generator h4jack password passwordgenerator python wordlist wordlistgenerator
Last synced: 2 months ago
JSON representation
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.
- Host: GitHub
- URL: https://github.com/h4jack/wordlistgenerator
- Owner: h4jack
- License: mit
- Created: 2024-06-07T04:01:58.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-06-07T04:04:22.000Z (12 months ago)
- Last Synced: 2025-01-20T19:44:53.703Z (4 months ago)
- Topics: generator, h4jack, password, passwordgenerator, python, wordlist, wordlistgenerator
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Password Wordlist Generator
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.
## Usage#### Clone the Repository:
```cmd
git clone https://github.com/h4jack/wordlistgenerator.git
```#### Navigate to the Directory:
```cmd
cd wordlistgenerator
```#### Run the Script:
```cmd
python main.py [-l ] [-v] ...
```
- `:` Name of the file to save the wordlist.
- `-l, --length:` (Optional) Length of combined words (default: None).
- `-v, --verbose:` (Optional) Enable verbose output.
- ` ...:` List of words to generate combinations from.#### Example:
Generate a wordlist with combinations of words "hello", "@" and "123" and save it to a file named "wordlist.txt":
```cmd
python main.py wordlist.txt -l 3 "hello" "@" "123"
```## Features
- 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.## Tech Stack
**Language:** Python 3.x+## Authors
- [@h4jack](https://www.github.com/h4jack)## License
This project is licensed under the [MIT License](https://github.com/h4jack/wordlistgenerator/blob/main/LICENSE/)## Feedback
If you have any feedback or suggestions, please feel free to [create an issue](https://github.com/h4jack/wordlistgenerator/issues) or [contact us](https://github.com/h4jack).