-
Notifications
You must be signed in to change notification settings - Fork 343
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change password validator configuration to be secure #2119
Comments
@vahid75 that would be great! Please go ahead and work on it and let me know how I can help. |
vahid75
added a commit
to vahid75/edx-documentation
that referenced
this issue
Dec 21, 2024
…stall operation document The default minimum password length mentioned in edx-platform/lms/envs/common.py is 8 characters but at install operation document you see 2. closes openedx#2119
The OpenEdx source code uses the right minimum length and the documentation is outdated (it was my bad for not checking the edx-platform code). I have created a PR on this repo to mention the correct value. For more information see the above PR description |
feanil
pushed a commit
to vahid75/edx-documentation
that referenced
this issue
Jan 7, 2025
…stall operation document The default minimum password length mentioned in edx-platform/lms/envs/common.py is 8 characters but at install operation document you see 2. closes openedx#2119
github-project-automation
bot
moved this from Backlog - Other
to Done
in docs.openedx.org
Jan 7, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Investigating a security issue on a bank's site led me to this project. The password policy defined in lms.yml configuration file appears to cause numerous productive systems to allow for passwords of length 2. This is because developers apparently miss to override the
min_length: 2
validator option in production.See also password.rst:
Although it is not really the responsibility of this project, I suggest this value to be changed to conform to latest password policy recommendations. For example, regarding password length NIST says minimum of 8. Microsoft says minimum of 12. OWASP says minimum of 8, in some places.
The text was updated successfully, but these errors were encountered: