A script to generate all possible password combinations based on user-defined criteria and save them to a file. Available in both Python and C versions.
- Generate passwords of custom lengths (minimum and maximum).
- Use specific characters or the entire set of letters, digits, and special symbols.
- Automatically saves generated passwords to a file (default:
pass.txtif no filename is provided).
- Python 3.x
- No additional libraries are needed; the script uses the standard Python library.
- A C compiler (e.g., GCC or Clang).
- Clone the repository:
git clone https://github.com/nextSaimon/password-combinator.git cd password-combinator python -u main.py