Regarding password security verification, is it possible for us to check password strength?
We want to prevent users from setting weak passwords, such as: !QAZ2wsx (the first two lines of characters on the keyboard)
Thanks.
Password security verification
Moderators: Developer, Contributor
Re: Password security verification
This funtionality is not available out of the box, see https://www.mantisbt.org/bugs/view.php?id=10318
Re: Password security verification
There is a plugin available, https://github.com/ryltar/Password-strength
I have not tesxted this but is may serve your request
I have not tesxted this but is may serve your request
Re: Password security verification
Hi casiame wrote: 03 Oct 2023, 08:38 Regarding password security verification, is it possible for us to check password strength?
We want to prevent users from setting weak passwords, such as: !QAZ2wsx (the first two lines of characters on the keyboard)
Thanks.
Thank you for your reply. We have used a similar setting to require users to set a more complex password, but some people will always set a simple password, but the password still complies with the rules, for example, the first two rows of the keyboard: !QAZ2wsx
Must contain at least 8 characters
Must contain at least one uppercase letter
Must contain at least one lowercase letter
Must contain at least one number
Must contain at least one special character
Re: Password security verification
Hi atrolatrol wrote: 03 Oct 2023, 09:41 This funtionality is not available out of the box, see https://www.mantisbt.org/bugs/view.php?id=10318
Thank you for your reply. We have used a similar setting to require users to set a more complex password, but some people will always set a simple password, even the password still complies with the rules
Must contain at least 8 characters
Must contain at least one uppercase letter
Must contain at least one lowercase letter
Must contain at least one number
Must contain at least one special character
Re: Password security verification
What you then can try is to extend the existing plugin with checking a table which holds the "weak" passwords.
Re: Password security verification
cas wrote: 11 Oct 2023, 06:05 What you then can try is to extend the existing plugin with checking a table which holds the "weak" passwords.
It sounds good, we will study in this direction, thank you for your advice.