Mini_Python_Projects icon indicating copy to clipboard operation
Mini_Python_Projects copied to clipboard

Password Health Checker

Open Dennismwendwa opened this issue 3 months ago • 3 comments

A simple Python tool that checks how secure a user’s password is by:

  1. Evaluating its strength locally (length, use of symbols, uppercase/lowercase mix, etc.).
  2. Using the HaveIBeenPwned API to check if the password has appeared in known data breaches.

The app can display results such as:

  • Strong password
  • Weak password (with reasons)
  • Found in data breaches (with the number of times exposed)

Dennismwendwa avatar Oct 11 '25 20:10 Dennismwendwa