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
{{ message }}
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.
The backend password confirmation when navigating in the Admin tools section does not work if failedTries is set to 0 or the number of failed tries is over this setting.
Process
Navigate to Admin Tools > Settings. You will be prompted with a "Confirm with user password" modal.
If your failedTries setting is not 0, type as many wrong passwords as needed to get a captcha
Type your password
Expected result
Password is confirmed and the Settings page appears.
Current result
Invalid password
Possible Fix
In the authUser() function of the CaptchaService class, validate that $this->login['status'] != 'sudo-mode' before validating the captcha response
Or
Add a captcha to the "Confirm with user password" modal
The text was updated successfully, but these errors were encountered:
The backend password confirmation when navigating in the Admin tools section does not work if failedTries is set to 0 or the number of failed tries is over this setting.
Process
Expected result
Password is confirmed and the Settings page appears.
Current result
Invalid password
Possible Fix
$this->login['status'] != 'sudo-mode'
before validating the captcha responseOr
The text was updated successfully, but these errors were encountered: