Web application and Python script to evaluate password strength. The tool analyzes password complexity and provides a theoretical estimate of the time required to crack it using brute-force attacks.
No installation required.
π Official site: https://marchy02.github.io/Password-tester/
- Open the project GitHub Pages website
- Use the web interface directly from your browser
The password is analyzed entirely client-side and never leaves your device.
Use this only if you prefer working from the terminal.
Requirements (Linux)
sudo apt update
sudo apt install -y git python3 python3-pipClone the repository
git clone https://github.com/Marchy/password-tester.git
cd password-testerInstall dependencies and run
pip install rich- Run the program:
python password_tester.pyindex.htmlβ Web interfacestyle.cssβ Stylesscript.jsβ Password analysis logic (JavaScript)password_tester.pyβ Original Python version
- Checks password requirements (uppercase, lowercase, numbers, symbols)
- Cracking time estimation based on entropy and character set
- Common password detection
- Fully offline execution
Made by Marchy