Skip to content
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 policy #88

Open
mirceaalexandru opened this issue May 23, 2016 · 2 comments
Open

password policy #88

mirceaalexandru opened this issue May 23, 2016 · 2 comments

Comments

@mirceaalexandru
Copy link
Collaborator

Right now the implemented password policy has following constraints:

  • minimum length
  • require at least one lower case
  • require at least one upper case
  • require number

The security checklist however requires something like this:

  • Password must be at least 8 characters long and meet at least two of the following conditions: Mix of letters and numbers , Mix of upper and lower case letters and Special characters (e.g., # & * ! $)

@AdrianRossouw any comments?

@AdrianRossouw
Copy link
Contributor

i think if we just modify it to be the following it would meet the requirements:

  • minimum length
  • one or more lower case letters
  • one or more upper case letters
  • one or more numbers
  • one or more special characters (eg., # & * ! $)

@mirceaalexandru
Copy link
Collaborator Author

We have all the above, without the condition for one or more special characters. What we cannot do right now is the requirement to have mix of letters and numbers or mix of upper/lowercase letters.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants