You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The form LoginPasswordType has a constraint on the password length. This kind of constraint is useful for password creation / update but not much for the login form.
My issue here is that I'm extending BoltAuth by adding a custom AuthorisationHandler to allow my users to login through a webservice. Some of these existing users have passwords with less than 6 characters.
I could override the form itself but I reckon this constraint could simply be removed because it also gives a potential attacker a clue on the passwords hashed in the database.
Alternatively, making the length configurable could be a solution.
The text was updated successfully, but these errors were encountered:
Hi,
The form LoginPasswordType has a constraint on the password length. This kind of constraint is useful for password creation / update but not much for the login form.
My issue here is that I'm extending BoltAuth by adding a custom AuthorisationHandler to allow my users to login through a webservice. Some of these existing users have passwords with less than 6 characters.
I could override the form itself but I reckon this constraint could simply be removed because it also gives a potential attacker a clue on the passwords hashed in the database.
Alternatively, making the length configurable could be a solution.
The text was updated successfully, but these errors were encountered: