diff options
author | se <se@FreeBSD.org> | 2018-07-29 14:53:06 +0800 |
---|---|---|
committer | se <se@FreeBSD.org> | 2018-07-29 14:53:06 +0800 |
commit | 8b9508dcca849126f7e038fea5b887acb74c07c4 (patch) | |
tree | f71d39ee667d67eeb08adeb9b24347c11ca24f64 /security/pwned-check | |
parent | cb6ffbd30d9027aa845b3a7757b0a9a036f734f3 (diff) | |
download | freebsd-ports-gnome-8b9508dcca849126f7e038fea5b887acb74c07c4.tar.gz freebsd-ports-gnome-8b9508dcca849126f7e038fea5b887acb74c07c4.tar.zst freebsd-ports-gnome-8b9508dcca849126f7e038fea5b887acb74c07c4.zip |
Add support for the remote query API. This obviates the need to download
the > 10 GB pawned password hash list, which requires nearly 20 GB after
decompression.
The API does not transfer the queried password or its full SHA1 hash to
the server, but only the first 5 characters of the hash. This allows to
retrieve the full password hashes that match that prefix (typically in the
order of 500) and then to check whether the password to test matches any
of the hashes returned.
Approved by: antoine (implicit)
Diffstat (limited to 'security/pwned-check')
-rw-r--r-- | security/pwned-check/files/pwned-check.1.in | 11 | ||||
-rw-r--r-- | security/pwned-check/files/pwned-check.sh.in | 16 |
2 files changed, 22 insertions, 5 deletions
diff --git a/security/pwned-check/files/pwned-check.1.in b/security/pwned-check/files/pwned-check.1.in index 9c0a51a49608..7606b694845a 100644 --- a/security/pwned-check/files/pwned-check.1.in +++ b/security/pwned-check/files/pwned-check.1.in @@ -10,7 +10,7 @@ .Sh DESCRIPTION The .Nm -utility checks the passwords piped in via standard input (one per line) +utility checks the passwords piped in via standard input (one per line) against a huge database of passwords that are known to have been stolen in data breaches. .Pp @@ -23,6 +23,15 @@ on standard output and the exit status of is set to 1. No output is generated for passwords not found in the database. .Pp +The database can be downloaded to a local directory or it can be queried +by a method that does not make the hash queried known to the remote +server. +The remote query is performed if the pawned password database has not +been fetched and stored on the local system. +While the remote accesses are not as fast as a local lookup, they will +query an always up-to-date database and allow to avoid the download and +storage of this huge database. +.Pp Instead of plain passwords, SHA1 hashes of passwords may be supplied. Matches will be reported, but there is no provision to report the plain text password corresponding to a given SHA1 hash. diff --git a/security/pwned-check/files/pwned-check.sh.in b/security/pwned-check/files/pwned-check.sh.in index d7cbe61dfcb5..bf4886f97833 100644 --- a/security/pwned-check/files/pwned-check.sh.in +++ b/security/pwned-check/files/pwned-check.sh.in @@ -82,14 +82,20 @@ exitcode=0 lookup () { - local hash="$1" - look "$hash" pwned-passwords*.txt > /dev/null + local hash=$(echo "$1" | tr 'a-z' 'A-Z') + if [ "$USEFILES" = yes ]; then + look "$hash" pwned-passwords*.txt > /dev/null + else + expected=${hash#?????} + prefix=${hash%$expected} + fetch -q -o - https://api.pwnedpasswords.com/range/$prefix 2>/dev/null | grep -i "^$expected:" >/dev/null + fi } checkpw () { local pwd="$1" - local hash=$(echo -n "$pwd" | sha1 | tr 'a-z' 'A-Z') + local hash=$(echo -n "$pwd" | sha1) if lookup "$hash"; then echo "$pwd" exitcode=1 @@ -102,8 +108,10 @@ checkpw () } # Main program -cd "$DBDIR" || errexit "Database directory '$DBDIR' not found." export LC_COLLATE=C +if cd "$DBDIR" && ls pwned-passwords*.txt; then + USEFILES=yes +fi >/dev/null 2>&1 if [ "$#" -gt 0 ]; then if [ "$1" = "-u" ]; then |