CouchDB Password Complexity #6085
Unanswered
OzzyAndMazel2022
asked this question in
Ideas
Replies: 2 comments
|
There are no plans to add any of these features. You can use other authentication handlers (like proxy or JWT) instead and then move your password management external to CouchDB? Some of your suggestions represent outdated security practices (forced expiration, "special" characters) and we would not adopt them in 2026. We would consider a pull request that introduced the things that NIST currently recommend, which is essentially just a minimum length of password. I also note it is possible to add MFA (https://docs.couchdb.org/en/stable/api/server/authn.html#logging-in-with-2fa) |
0 replies
|
I missed this: https://docs.couchdb.org/en/stable/config/auth.html#chttpd_auth/password_regexp |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Are there any plans to introduce password complexity requirements into CouchDB? I have a product in my portfolio that is trying to satisfy the the following requirements:
Rule 1). minimum of 15 characters, including at least one of each of the following character sets:
Rule 2). Minimum number of characters changed from previous password: 50 percent of the minimum password length; that is, eight.
All reactions