-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
Password validation allows 7 characters, but the minimum requirement is 8 characters #18250
Comments
damn now that's some bug |
Yes, I've checked also on firefox browser but there is no text of 8 character password |
so where is this occurring? |
we have to validate from codebase that they are accepting 7 or 8 character password |
I did a simple search for "eight", but nothing popped up related to password in the codebase the checks are for =>7 |
oh wow interesting |
could you please verify this? Mínimo de sete caracteres <= Minimum seven characters I used google translate for this. I believe the solution is to simply update the apps/web/public/static/locales/pt-BR/common.json. |
I verified the change. "Mínimo de sete caracteres" is correct. |
Issue Summary
The password validation allows a minimum of 7 characters, despite the requirement being 8 characters. This discrepancy leads to inconsistent behavior between the documented and actual system validation.
Steps to Reproduce
Actual Results
The system accepts passwords with 7 characters, which violates the documented minimum length of 8 characters.
Expected Results
The system should reject passwords that are shorter than 8 characters and display a validation error message.
Technical details
Evidence
This issue was identified through black-box testing, specifically using boundary value analysis. The test involved providing a password with 7 characters to check if the system correctly enforces the minimum length of 8 characters.
Submitting a form with a 6-character password
Submitting a form with a 7-character password
The text was updated successfully, but these errors were encountered: