This TYPO3 extension contains a plugin to allow logged in frontend users to change their password. Additionally the extension allows to define password rules for frontend user passwords and can also check if the password was part of a data breach using the haveibeenpwned.com API.
Password changes for frontend users can be enforced and passwords can expire after a certain amount of days.
Features:
- Change password plugin
- Configurable password rules (upper case char, lower case char, digit, special char)
- Force password change for frontend users
- Redirect to configured page when password change is required (uses PSR-15 Middleware in TYPO3 v9)
- Password expiration after a configurable amount of days
- Optional check if password has been part of a data breach using the haveibeenpwned.com API and the k-Anonymity model
The screenshot below shows the output of the "Change Frontend User Password" plugin after the user tried to submit
a weak password.
-
Install the extension from the TYPO3 Extension Repository or using composer and add the Static Typoscript "Change password for frontend users" to your TypoScript template.
-
Create a new page and make sure, that the page is only visible to logged in frontend users.
-
Add the Plugin "Change Frontend User Password" to the page created in step 2
-
Change TypoScript settings to your needs. Please note, that if you want to use the password change enforcement, you must set
settings.changePasswordPid
to the page uid of the page created in step 2 -
Optionally change the path to the extension templates in TypoScript and modify the templates to your needs.
The extension adds two new fields to the fe_users table (see screenshot)
If the checkbox "User must change password at next login" is set and a valid changePasswordPid
is configured,
the user will be redirected to the configured page after login or whe accessing pages configured in the
plugin.tx_fechangepwd.settings.redirect
section.
The password expiry date defines the date, after a user must change the password.
Tip: If you quickly want all frontend users to change their passwords, you can use a simple SQL statement
to set the field in the database like shown in this example UPDATE fe_users set must_change_password=1;
The following TypoScript settings are available.
plugin.tx_fechangepwd.settings
changePasswordPid
(integer) The pid to redirect to if a password change is required. This is usually the page with the Plugin of the extension
plugin.tx_fechangepwd.settings.passwordComplexity
minLength
(integer) Minimum length for the password.capitalCharCheck
(bool) Is set to1
, the password must at least contain one capital character.lowerCaseCharCheck
(bool) Is set to1
, the password must at least contain one lower case characterdigitCheck
(bool) Is set to1
, the password must at least contain one digitspecialCharCheck
(bool) Is set to1
, the password must at least contain one special character
plugin.tx_fechangepwd.settings.pwnedpasswordsCheck
enabled
(bool) If set to1
, the new password is checked using the haveibeenpwned.com API to verify, that the password has not been exposed in a data breach. Note, that the API uses a k-Anonymity model, so no passwords are submitted to the external service. Read more about it here
plugin.tx_fechangepwd.settings.passwordExpiration
enabled
(bool) Is set to1
, new passwords will expire after the configured amount of daysvalidityInDays
(integer) The amount of days, a new password is valid before it needs to be changed
plugin.tx_fechangepwd.settings.redirect
allAccessProtectedPages
(bool) If set to1
, a redirect to the configuredchangePasswordPid
will be forced for all access protected pages. Note, that if this option is set, theincludePageUids
is ignored!includePageUids
(string) A redirect to the configured changePasswordPid will be forced for the configured PIDs separated by a commaincludePageUidsRecursionLevel
(integer) The recursion level for all pages configured inincludePageUids
. Use this option, if you e.g. want to force a redirect for a page and all subpagesexcludePageUids
(string) No redirect will be forced for the configured PIDs separated by a commaexcludePageUidsRecursionLevel
(integer) The recursion level for all pages configured inexcludePageUids
. Use this option, if you e.g. want to exclude a page and all subpages for the redirect
The extension output is completely unstyled. Feel free to override the fluid templates to your needs.
The extension will not save a users password, if it can not be securily be hashed. If this scenario occurs, the following exception is shown:
No secure password hashing service could be initialized. Please check your TYPO3 system configuration
In TYPO3 8.7, you must ensure, that the Setting basic.FE.enabled
is enabled for the saltedpasswords
extension.
I would like to thank Wikafi sprl for sponsoring the initial development of this extension and for supporting open source software.
Also a big thanks to Troy Hunt for his remarkable work and the haveibeenpwned.com service and API.