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
User passwords that are sanitized before being compared to the hashed password will result in the hashes not matching
Other installed plugins (optional)
Additional Context (optional)
When some passwords are sanitized in AuthenticationService->authenticateUser() function before they are compared to the hash in the database, it will cause the authentication to fail. For example, if a password is 'XXX%20YYY', the sanitizeTextField function will stripe the encoded character, which will then cause the user authentication to fail.
The text was updated successfully, but these errors were encountered:
Bug Report
Plugin Version
3.5.6
PHP Version
7.3.28-1
WordPress Version
6.5.5
Bug description
User passwords that are sanitized before being compared to the hashed password will result in the hashes not matching
Other installed plugins (optional)
Additional Context (optional)
When some passwords are sanitized in AuthenticationService->authenticateUser() function before they are compared to the hash in the database, it will cause the authentication to fail. For example, if a password is 'XXX%20YYY', the sanitizeTextField function will stripe the encoded character, which will then cause the user authentication to fail.
The text was updated successfully, but these errors were encountered: