Redirecting bots to utilize their time better...
Project description
django-spam
Inspired by this Nick Craver tweet https://twitter.com/nick_craver/status/720062942960623616
We all hate bots, lets admit it. Especially the ones that try to gain access to our most secret endpoints. Well we have an easy solution for your django application. django_spam simply adds common admin urls to url conf so when bots (or human for that matter) try and access them, they will get redirected...
Django 2.0 | Django 2.1 | Django 2.2 | Django 3.0 | Django 3.1 | Django 3.2 | |
---|---|---|---|---|---|---|
Python 3.4 | :heavy_check_mark: | |||||
Python 3.5 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | |||
Python 3.6 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
Python 3.7 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
Python 3.8 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | ||
Python 3.9 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
Installation / Usage
pip install django-spam
Add to apps list:
INSTALLED_APPS = [
'...',
'django_spam',
'...'
]
django_spam ships with some default endpoints bots might try to hit. If you would like to add extra routes, simply add
a SPAM_ROUTES
variable to your settings file that contains a list of extra endpoints you would like
to add. no leading slashes
SPAM_ROUTES = [
'admin.php',
'admin/login.php',
'administrator/index.php',
'index.php',
'...',
]
Include django_spam.urls
to root url file:
'...'
path('', include('django_spam.urls')),
'...',
If for some odd reason you need to exclude routes, define EXCLUDED_ROUTES
in settings. no leading slashes
EXCLUDED_ROUTES = [
'admin.php',
'index.php'
]
Demo
See here
Development
This project uses Poetry to manage dev environment. Once installed:
- Clone and
cd
into repo - install packages with
poetry install
- black
poetry run black .
- flake8
poetry run flake8
- test
poetry run coverage run --source=django_spam setup.py test
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
File details
Details for the file django_spam-2.0.1.tar.gz
.
File metadata
- Download URL: django_spam-2.0.1.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9859243a48eee6d37879adb2e2c1733d47c99fa8783e7883ebf5c17ded3dafcb |
|
MD5 | 81ce462245279dc34b13bc9a34d67fdf |
|
BLAKE2b-256 | 8602241515deca7e514af3023d26f1ee80eeae7a6bff147b5f46c6675cf27c27 |