An open API service indexing awesome lists of open source software.

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.

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).