SecurePass Lab is an offline password health, exposure, and demo audit toolkit for local educational use.
- Password health check
- Local breach/common-password wordlist check
- Demo user dataset generation
- Demo user offline audit mode
- Live terminal progress
- CSV and JSON export
- Linux and Termux-friendly CLI
python3 run.py --mode generate --users 12python3 run.py --mode audit-demo-users --delay 20python3 run.py --mode check-password --password "Welcome123"python3 run.py --mode breach-list-check --password "123456"python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python3 run.py --mode generate --users 12
python3 run.py --mode audit-demo-userspkg update
pkg install python
pip install -r requirements.txt
python3 run.py --mode generate --users 12
python3 run.py --mode check-passwordpython3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python3 run.py --mode generate --users 12
python3 run.py --mode audit-demo-users --delay 20
python3 run.py --mode check-password --password "Welcome123"
python3 run.py --mode breach-list-check --password "123456"YOU CAN ALSO ADD YOUR CUSTOM WORDLIST IN "securepass-lab/data/wordlists/" DIRECTORY.