PwdCheckup is a powerful password strength checker designed for Kali Linux. It evaluates the strength of a password and estimates how long it would take to crack it using brute force attacks.
- Check the strength of a single password.
- Process multiple passwords from a file.
- Estimate the time required to crack a password.
- Save results to an output file.
Clone the repository and install dependencies:
git clone https://github.com/jayaprakashreddy561/PwdCheckup.git
cd PwdCheckup
pip install -r requirements.txtRun the tool using the following command:
python3 pwdcheckup.py -h| Option | Description |
|---|---|
-s <password> |
Check a single password. |
-f <file> |
Check passwords from a text file. |
-o <output_file> |
Save the results to an output file. |
python3 pwdcheckup.py -s "P@ssw0rd!"Output:
Password Strength: Strong
Estimated time to crack: 15 years, 2 months, 5 days
python3 pwdcheckup.py -f passwords.txt -o results.txtThis will check all passwords listed in passwords.txt and save the results in results.txt.
Feel free to fork the repository, improve the tool, and submit a pull request!
For any issues or suggestions, reach out via GitHub.