-
Notifications
You must be signed in to change notification settings - Fork 66
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 improvements #2842
Comments
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
craigh
added a commit
that referenced
this issue
Jul 14, 2017
* #3644 * #3644 * Use SchemaValidationHelper to accomplish all validation for an extension * #3646 * convert todo to simple note * remove todo * #3647 * remove deprecated plugin type * remove todo * remove todo * refs #3530 * #3648 * #3648 * don't restrict filenames in doc controller * #3454 * rem todo * inject translator * restrict doc controller arg @Guite * #3649 * send specific message about group membership * send specific message about group membership * ci * translate validation error * remove todo * #3650 * #3651 * #3644 * #3652, #2915 * #2915 * #2842 * rem todo * #2842 * #3653 * revert mistaken change
I have re-assigned this to milestone 3 because I feel it is very important to correct these issues for this release and not delay. |
craigh
added a commit
that referenced
this issue
Feb 17, 2020
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Passwords and password management must be significantly improved.
http://stackoverflow.com/questions/401656/secure-hash-and-salt-for-php-passwords
http://www.dev-metal.com/use-php-5-5-password-hashing-functions/
php 5.5 is required for php password functions, but Symfony has polyfill loaded for 5.4 so we can begin using anytime.
allow admin to reset user password with temporary password being sent to user and force update on first login.(this was already implemented)use native php (polyfill) where possible.Password configuration - allow the admin to select 'degrees' of password security:require numbers yes|norequire symbols yes|norequire some capital and lowercase yes|nophppassword_hash
allows a 'cost' param (manual) - allow user to select a valueThe text was updated successfully, but these errors were encountered: