A set of security tools for Django.
Project description
A set of security tools for Django.
Install the package:
pip install django-security-tools
Add the app to INSTALLED_APPS:
INSTALLED_APPS = [
# Other apps...
'django_security_tools',
]
Apply migrations:
python manage.py migrate
Add secret admin route
urls.py
from django.contrib import admin
from django.urls import path
from django_security_tools.views import admin_honeypot
urlpatterns = [
path('admin/', admin_honeypot, name='admin_honeypot'),
path('secret/', admin.site.urls), # Your real admin
]
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_security_tools-0.0.1.tar.gz.
File metadata
- Download URL: django_security_tools-0.0.1.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4157bfa81864fac1d089affdc7d91306de3f1b24f30b1c1ae64d1288dfc847eb
|
|
| MD5 |
8f51ea97c3f168e25d21fb4b78733dc3
|
|
| BLAKE2b-256 |
5171e4231356f36ed8300e6498ba6f70e7c32d0a54c000110449a2311d766614
|
File details
Details for the file django_security_tools-0.0.1-py3-none-any.whl.
File metadata
- Download URL: django_security_tools-0.0.1-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
115881b889b511460e97b4c050d16f8d624f2f8f822f0f38bfc331b60db11f12
|
|
| MD5 |
51e099353d411ae3ffaec65037094f13
|
|
| BLAKE2b-256 |
f942f343679a19c426dfeebf1735a131506bccfe683f080552be993b0ec5dd1b
|