From 7e1a56c3e9da3993d8dcfdb07f46c63a8373d86b Mon Sep 17 00:00:00 2001 From: Tercio Gaudencio Filho Date: Fri, 25 Mar 2022 18:45:54 -0300 Subject: [PATCH] Added note to README about password strength meter. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index f0d7875..1f0dfba 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,10 @@ The only purpose is to allow a user to change its samba password using a webbrow When a user needs to change his password, sysadmin will create a token, the token will generate a URL that the user will access to change its password. Done. +## Password Strength + +We use [`zxcvbn`](https://github.com/dropbox/zxcvbn) as password strength meter. + ## Securing You _MUST_ use this app over a SSL connection, otherwise, your user's password can be sniffed. You can run the embedded webserver using SSL, you just need to provide the certificate file(`--ssl-cert CERT_FILE`) and private key(`--ssl-key KEY_FILE`) with the flag `--ssl`.