Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django account lockout [closed]

Does anyone know of a Django App which can be used to extend django auth and lock accounts if a brute force password guessing attack is mounted?

Ie, an account lockout mechanism that restricts the number of login attempts.

like image 588
stephendwolff Avatar asked Mar 03 '11 10:03

stephendwolff


3 Answers

http://pypi.python.org/pypi/django-axes/ is what you are looking for.

like image 171
JamesO Avatar answered Sep 30 '22 18:09

JamesO


I created django-failedloginblocker for this purpose, and used django-brutebuster and, to a lesser extent, django-axes as inspiration.

like image 38
Alex Kuhl Avatar answered Sep 30 '22 18:09

Alex Kuhl


This one is still maintained (2018): https://github.com/kencochrane/django-defender

like image 34
dan-klasson Avatar answered Sep 30 '22 18:09

dan-klasson