Restrict Django sessions to IP and/or user agent.
Project description
Restricts Django sessions to IP and/or user agent.
If the IP or user agent changes after creating the session, the a 400 response is given to the request, the session is flushed (all session data deleted, new session created) and a warning is logged. The goal of this middleware is to make it harder for an attacker to use a session ID they obtained. It does not make abuse of session IDs impossible.
For compatibility with IPv6 privacy extensions, by default only the first 64 bits of an IPv6 address are checked.
Documentation
The full documentation is at https://django-restricted-sessions.readthedocs.org.
Quickstart
Install django-restricted-sessions:
pip install django-restricted-sessions
Then add it to your middleware after SessionMiddleware:
MIDDLEWARE_CLASSES = [ .... 'django.contrib.sessions.middleware.SessionMiddleware', # 'django.contrib.auth.middleware.AuthenticationMiddleware', 'restrictedsessions.middleware.RestrictedSessionsMiddleware', .... ]
When RESTRICTEDSESSIONS_AUTHED_ONLY setting enabled ensure this middleware is added after AuthenticationMiddleware such that the request.user is present.
History
0.1.3.1 (2016-05-26)
Version bump to avoid PyPI’s duplicate filename ban.
0.1.3 (2016-05-26)
Added support to redirect to known view, or use custom status code settings.
Added support for ignoring unauthenticated sessions.
Fixed short circuit when REMOTE_ADDR was unknown.
Dropped support for older Python versions: now requires 2.7, 3.3 or newer, with Django 1.8.
0.1.2 (2014-03-20)
Resolved exception being raised when session switches from IPv4 to IPv6
Python 3.4 support
0.1.1 (2014-02-18)
Added missing netaddr requirement to setup.py.
0.1.0 (2014-02-17)
First release on PyPI.
Project details
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-restricted-sessions-0.1.3.1.tar.gz
.
File metadata
- Download URL: django-restricted-sessions-0.1.3.1.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55b8ebb4cbd0aa3f5cab678c875dcc7f779e88a6c873b90473a25383c2366c08 |
|
MD5 | ec5a89794e1de9336c72498bff0e398c |
|
BLAKE2b-256 | f457ca0cbbfeff9007cf82ab2030bbc8360d5d6664fb9b4d47872ecdf531a501 |