Hi all, I thought a bit about login rate limiting again in recent times. https://code.djangoproject.com/ticket/21289
We know that there are some packages (django-ratelimit, django-defender, etc.) that can do the job, but the main issue here is to provide a *default* behavior for any fresh new Django project. A must-read on this subject is: https://owasp.org/www-community/controls/Blocking_Brute_Force_Attacks I would like to suggest one mitigation measure for default Django, which seems to me the least controversial, considering that hard-locking by username and/or ip address can open Denial of Service vectors which may or may not be acceptable for some sites. My suggestion is to add a time delay of 5 seconds in the contrib.auth.forms.AuthenticationForm after the first failure on any username. This choice of 5 seconds is a compromise between not too much annoying users after a failed login attempt, and still set a significant throttling limit for some brute force attacks. You can consider that after a failed login, a real user will spend at least 2-3 seconds just to re-enter a new password and re-submit the form, so the real wait penalty should not be more than 2-3 seconds. This is of course NOT the panacea against all type of brute force attacks, as you can read on the OWASP article above. But it appears to me as a reasonable measure that can be widely accepted by most Django projects that use the default authentication form. The WIP PR is available here: https://github.com/django/django/pull/13242 Kind regards, Claude -- www.2xlibre.net -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-developers+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/49b80757-9117-fa11-3f53-731af1f0c206%402xlibre.net.