https://github.com/krisarmstrong/password-combo-generator
Generate case combinations and permutations of passwords for security testing.
https://github.com/krisarmstrong/password-combo-generator
password python security utilities
Last synced: 5 months ago
JSON representation
Generate case combinations and permutations of passwords for security testing.
- Host: GitHub
- URL: https://github.com/krisarmstrong/password-combo-generator
- Owner: krisarmstrong
- License: mit
- Created: 2025-04-18T00:01:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-12T18:39:51.000Z (7 months ago)
- Last Synced: 2026-01-13T00:11:46.120Z (7 months ago)
- Topics: password, python, security, utilities
- Language: Python
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Password Combo Generator
 
Generate case combinations and permutations of a password string for authorized security testing.
## Requirements
- Python 3.11+
## Install
```bash
git clone https://github.com/krisarmstrong/password-combo-generator
cd password-combo-generator
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -r requirements.txt
```
## Usage
```bash
python src/password_combo_generator.py --password "MyPass123" --output_file passwords.txt --verbose
```
Arguments:
- `--password` (required): Password to generate combinations and permutations for.
- `--output_file`: Output file for generated passwords (default: `passwords.txt`).
- `-v`, `--verbose`: Enable verbose logging.
- `--logfile`: Log file path (default: `password_combo_generator.log`).
- `--version`: Display version.
## Project Structure
- `src/password_combo_generator.py` — Main script.
- `tests/` — Pytest suite.
- `CHANGELOG.md` — Version history.
- `LICENSE` — MIT License.
## License
MIT. See `LICENSE` for details.