How to set the maximum number of failed login attempts? #180
-
I was looking for an option here to set a limit on the maximum number of failed login attempts( For example, if the user tries unsuccessfully more than 5 times, his account will be blocked for a certain period of time ( |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 7 replies
-
The feature is not implemented. |
Beta Was this translation helpful? Give feedback.
-
My original thought is that CodeIgniter's throttler would do the job. It seemed to match the best practices I was reading about at the time, since locking users out of accounts ends up being a very frustrating experience for people who legitimately cannot remember their password. Instead, I'd give the throttler a high cost for the login/register pages to keep it usable but make it slow enough that people are less likely to continue a brute force attempt. |
Beta Was this translation helpful? Give feedback.
-
I created a PR for this. |
Beta Was this translation helpful? Give feedback.
-
Thanks to everyone. |
Beta Was this translation helpful? Give feedback.
I created a PR for this.