A smart Django security package to auto-block suspicious traffic
Project description
django-secux ( All for in one )
django-secux is a simple yet powerful Django security package that protects heavy-load pages by rate-limiting access based on real usage patterns stored in the database.
Features
- Automatically blocks overused views for a customizable time window
- Super easy to use with just a decorator!
- Mininfing and Cache Your HTML / CSS / JS / Images / Fonts
- Image compressor with
sizeargument ( e.gwww.example.com/cdn/images/example.png?size=250)
Installation
pip install django-secux
Then add it to your Django project:
# settings.py
INSTALLED_APPS = [
...
'django_secux',
]
# if you want Minify
MIDDLEWARE = [
...
'django_secux.middleware.Minify',
]
and if you using Fake CDN, add this to urls.py main:
urlpatterns = [
...
path('', include('django_secux.urls'))
]
Apply migrations:
python manage.py makemigrations django_secux
python manage.py migrate
Usage
Just decorate your heavy or sensitive views with @ai_ratelimit():
from django_secux.decorator import ai_ratelimit
@ai_ratelimit()
def my_view(request):
return HttpResponse("Hello, world!")
This view will now be monitored. If accessed too frequently within a day, it will be blocked for 5 minutes.
Customization & Configuration
for block messages:
SECUX_MESSAGES = {
"blocked": "This page is temporarily blocked. Please try again later.",
"rate_exceeded": "Rate limit exceeded. This page is blocked temporarily.",
}
and for static/media files:
SECUX_STATIC = [
os.path.join(BASE_DIR, "media/uploads"),
os.path.join(BASE_DIR, "protected/images"),
]
Ideas or Issues?
Feel free to contribute, fork or submit issues on GitHub.
Let's keep Django apps safe and clean!
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_secux-0.1.8.tar.gz.
File metadata
- Download URL: django_secux-0.1.8.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4baed63bfd0ff98ea83b522cedfd9f191c1c8a65cf204d99c355d29ddd157c9
|
|
| MD5 |
9489f2fb24f52afe63a752146413df06
|
|
| BLAKE2b-256 |
4ce2f4983d8752ff5d9d9bc7f9e433cfd82ace9312146eeb98f64748361330ba
|
File details
Details for the file django_secux-0.1.8-py3-none-any.whl.
File metadata
- Download URL: django_secux-0.1.8-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13a806b220fb3d758e8008d56c8672b5c1bc66f1d0aab02d624b8c4c0a720dbf
|
|
| MD5 |
84d1f7aeb5f6a13918302ba72e15392a
|
|
| BLAKE2b-256 |
3ae8349bdf7bde4c9227c95c7b4010c1e94a42722ec1339bbcad1bfb4437cf89
|