Secure your Django app by controlling the access - grant or deny user access based on device and location, including VPN detection.
Project description
Django Forbid
Django Forbid aims to make website access managed and secure for the maintainers. It provides a middleware to grant or deny user access based on device and/or location. It also supports VPN detection for banning users who want to lie about their country and geolocation. Also, users can use only the VPN detection feature or disable it.
Installation
python -m pip install django-forbid
Configuration
Add the django_forbid.apps.ForbidConfig
to your INSTALLED_APPS
in your Django project's settings.py file.
INSTALLED_APPS = [
..., # other apps
'django_forbid.apps.ForbidConfig',
]
Also, add the django_forbid.middleware.ForbidMiddleware
to the MIDDLEWARE
list of the project.
MIDDLEWARE = [
..., # other middlewares
'django_forbid.middleware.ForbidMiddleware',
]
Configuring the GEOIP_PATH
variable in your project's settings is important. This variable should contain the path to
the GeoLite2 database file. You should download the database and
follow the Django documentation for proper
configuration.
Usage
After connecting the Django Forbid to your project, you can define the set of desired zones to be forbidden or allowed.
All you need is to set the DJANGO_FORBID
variable in your project's settings. It should be a dictionary with the
following keys:
DEVICES
- list of devices to permit or forbid access toCOUNTRIES
- list of countries to permit or forbid access toTERRITORIES
- list of territories to permit or forbid access toOPTIONS
- a dictionary for additional settingsVPN
- use VPN detection and forbid access to VPN usersURL
- set of URLs to redirect to when the user is located in a forbidden country or using a VPNFORBIDDEN_LOC
- the URL to redirect to when the user is located in a forbidden geolocationFORBIDDEN_NET
- the URL to redirect to when the user is using a forbidden network (VPN)FORBIDDEN_DEV
- the URL to redirect to when the user is using a forbidden device
The available device types are: smartphone
, peripheral
- refers to all hardware components that are attached to a
computer, wearable
- common types of wearable technology include smartwatches and smartglasses, phablet
- a
smartphone having a larger screen, console
- PlayStation, Xbox, etc., display
, speaker
- Google Assistant, Siri,
Alexa, etc., desktop
, tablet
, camera
, player
- iPod, Sony Walkman, Creative Zen, etc., phone
, car
- refers
to a car browser and tv
- refers to TVs having internet access.
DJANGO_FORBID = {
'DEVICES': ['desktop', 'smartphone', 'console', 'tablet', 'tv'],
'COUNTRIES': ['US', 'GB'],
'TERRITORIES': ['EU'],
'OPTIONS': {
'VPN': True,
'URL': {
'FORBIDDEN_LOC': 'forbidden_location',
'FORBIDDEN_NET': 'forbidden_network',
'FORBIDDEN_DEV': 'forbidden_device',
},
},
}
The available country codes in the required ISO 3166 alpha-2 format are
listed here. And the available continent codes (territories) are: AF
-
Africa, AN
- Antarctica, AS
- Asia, EU
- Europe, NA
- North America, OC
- Oceania and SA
- South America.
None of the settings are required. If you don't specify any settings, the middleware will not do anything.
Contribute
Any contribution is welcome. If you have any ideas or suggestions, feel free to open an issue or a pull request. And don't forget to add tests for your changes.
License
Copyright (C) 2023 Artyom Vancyan. MIT
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
File details
Details for the file django-forbid-0.1.6.tar.gz
.
File metadata
- Download URL: django-forbid-0.1.6.tar.gz
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 029d1c3ef8c2ee3e7f31fc5699f4056eca20d05f3e49deb3c1e384ae4e86348f |
|
MD5 | dd6af866a3ebb904e79d3dadf4f22d50 |
|
BLAKE2b-256 | 7b036843a1243f623916a0969efb5f27ad52c811b1c6201a6eba6a924f81ac3a |
File details
Details for the file django_forbid-0.1.6-py3-none-any.whl
.
File metadata
- Download URL: django_forbid-0.1.6-py3-none-any.whl
- Upload date:
- Size: 10.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5628f0e27894c5f5264a7d2456845f3af3ac23b8a702b228ec3f9831caee5d93 |
|
MD5 | fc5a092fa5a2f4714e4d2350160feb82 |
|
BLAKE2b-256 | cada2a3557abed1c62257f71e15f3db1e651e2493d61245c6d2af54390f2996f |