https://github.com/maandree/passcheck
Passphrase strength evaluator
https://github.com/maandree/passcheck
password-checker security
Last synced: over 1 year ago
JSON representation
Passphrase strength evaluator
- Host: GitHub
- URL: https://github.com/maandree/passcheck
- Owner: maandree
- License: agpl-3.0
- Archived: true
- Created: 2013-05-09T23:46:50.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2024-10-06T18:35:38.000Z (over 1 year ago)
- Last Synced: 2025-01-31T11:50:03.407Z (over 1 year ago)
- Topics: password-checker, security
- Language: Python
- Homepage:
- Size: 116 MB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: COPYING
Awesome Lists containing this project
README
NAME
passcheck - passphrase strength evaluator
SYNOPSIS
passcheck [OPTION]... < PASSPHRASE_LIST
DESCRIPTION
Evaluates the strength of passphrases based.
All passphrases are given a non-negative integer rating.
The output is formatted so that it is suitable for
piping into 'sort -rn' to sort passphrases by strength.
300 is a good threshold for strong passphrases,
200 is a good threshold for acceptable passphrases.
OPTIONS
-r
--raw
Treat escape sequences as part of the passphrases.
If not used, ANSI escape sequences are ignored.
-w
--waste-ram
Loads the blacklist into RAM and creates a hash set
of it. It is unreasonable to do this unless you have
the process running indefinitely and (somewhat)
continuously feed passphrases. Note that this
requires a lot of RAM.
RATIONALE
Passphrase-strength meters used on the Web use horrid
heuristics and does not even blacklist the most common
passphrases. We need better passphrase-strength meters
to keep users safe.
SEE ALSO
correctpony(1), autopasswd(1), john(1), sort(1)
Full documentation available locally via: info '(passcheck)'