Django Brute-force guard
Project description
Django Brute-force guard
Documentation
The full documentation is at https://django-brute-guard.readthedocs.io.
Quickstart
Install Django brute-forece guard:
pip install django-brute-guard
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
"bruteguard",
...
)
MIDDLEWARE = [
...
"bruteguard.middleware.brute_guard",
]
BRUTE_GUARD = {
"MANAGER": "SingletonManager", # or "DjangoCacheManager"
"VALIDATORS": ["BruteForceValidator"],
"OPTIONS": {
"error_attempts_counter": 5,
"base_blocking_rate_minutes": 1,
"multiple_blocking_rate": True,
},
}
Add Django brute-forece guard’s URL patterns:
urlpatterns = [
...
path("bruteguard/", include(bruteguard_urls)),
...
]
Features
TODO
Running Tests
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install tox (myenv) $ tox
Development commands
pip install -r requirements_dev.txt invoke -l
Credits
Tools used in rendering this package:
History
0.1.0 (2021-09-23)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-brute-guard-0.1.0.tar.gz
(12.3 kB
view hashes)
Built Distribution
Close
Hashes for django_brute_guard-0.1.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6769ab270e58e664df5dc00af8531f0c081fa3d8bcc5b45e26d1d8b3129ab505 |
|
MD5 | 591c7cb06f8875ab8d4f870a1e4eb467 |
|
BLAKE2b-256 | c570786bec9347b2421d2de1d0eba657c3919fee425766dd55537d2d9d051027 |