Client and server-side session timeout enforcement with warnings for Django 4.2+.
Project description
django-session-security-continued
- About
- Requirements / Compatibility
- Installation
- Single Sign-On (SSO) Considerations
- Development
- Testing
- Contributing
About
A minimal JavaScript and Django middleware app that automatically logs out users after inactivity. It tracks activity across all browser tabs, warns users before logging them out, and protects sensitive data.
Built for CRMs, intranets, and similar applications, it prevents abandoned sessions from staying open when users leave their workstations. Unlike simply setting session expiry, this approach ensures users aren’t logged out while reading, reviewing data, or filling out forms; preserving their work and reducing frustration while still enforcing inactivity-based security.
This fork is maintained by Arrai Innovations Inc. based on the original django-session-security by Yourlabs.
Requirements / Compatibility
- Django: 4.2, 5.2
django.contrib.staticfiles
- Python: 3.9, 3.10, 3.11, 3.12
Installation
# Install the package
$ pip install django-session-security-continued
# settings.py
INSTALLED_APPS = [
# Add the app
'session_security',
# ...
]
MIDDLEWARE = [
# Make sure this comes AFTER the authentication middleware
'django.contrib.auth.middleware.AuthenticationMiddleware',
'session_security.middleware.SessionSecurityMiddleware',
# ...
]
TEMPLATES = [
{
# ...
'OPTIONS': {
'context_processors': [
# Ensure this is present
'django.template.context_processors.request',
# ...
],
},
},
]
# Optional settings (see configuration section for details)
SESSION_SECURITY_WARN_AFTER = 540 # Warn user after 9 minutes
SESSION_SECURITY_EXPIRE_AFTER = 600 # Log out after 10 minutes
SESSION_SECURITY_PASSIVE_URLS = [] # URLs that won’t reset the timer
SESSION_SECURITY_REDIRECT_TO_LOGOUT = False # Set True for SSO setups
SESSION_SECURITY_PING_URL = '/session_security/ping/' # Activity endpoint
SESSION_SECURITY_JS_PATH = 'session_security/script.js' # Override to load custom bundles (tests/coverage)
# urls.py
from django.urls import include, path
urlpatterns = [
# Add this route to enable the session security endpoints
path('session_security/', include('session_security.urls')),
# ...
]
<!-- base.html (or equivalent) -->
{% load static %}
...
{% include "session_security/all.html" %}
<script>
// optional: disable form discard confirmation dialog
sessionSecurity.confirmFormDiscard = undefined;
// optional: register custom activity
sessionSecurity.activity();
</script>
Single Sign-On (SSO) Considerations
When using SSO, the default page reload after timeout may cause automatic re-login if the SSO session remains valid. Set SESSION_SECURITY_REDIRECT_TO_LOGOUT = True to explicitly end the app session by redirecting to LOGOUT_REDIRECT_URL. Note that this does not terminate the SSO provider session; configure a matching timeout on your SSO server for full coverage.
Development
This project uses uv for managing the development environment. To set up the development environment, follow these steps:
# Clone the repository
$ git clone https://github.com/arrai-innovations/django-session-security-continued.git
$ cd django-session-security-continued
# Ensure a compatible Python (>=3.9) is installed
# Install uv if not already installed
$ pip install --user --upgrade uv
# Create and sync the dev environment
# (default group includes dev dependencies)
$ uv sync
# (Optional) Run Git hooks setup
$ uv run pre-commit install
# Install JS tooling for the client bundle / coverage builds
$ npm install
Testing
Chrome is required for the Selenium end-to-end tests (Selenium Manager will download the matching chromedriver automatically). Run the full suite with pytest:
$ uv run pytest
If Chrome isn’t available (or you only want the fast unit tests), skip the browser suite with uv run pytest -m "not selenium".
Add extra breathing room to the Selenium waits (in CI) by exporting SESSION_SECURITY_TIMEOUT_PADDING (in seconds). For example, SESSION_SECURITY_TIMEOUT_PADDING=5 uv run pytest -k selenium gives each warning/expiry wait up to five additional seconds before failing.
JavaScript coverage
We ship a Vite + Istanbul build that instruments the client bundle and collects coverage from the Selenium run:
npm run build:coverageSESSION_SECURITY_JS_COVERAGE=1 uv run pytest -k seleniumnpm run coverage:report(writes reports tocoverage-js/andlcov.info)
The SESSION_SECURITY_JS_COVERAGE flag makes the Django test settings load the instrumented bundle and dumps window.__coverage__ into .nyc_output/ after each Selenium test.
Contributing
Contributions are welcome. Please fork the repository and create a pull request with your changes. We reserve the right to review and modify your contributions before merging them into the main branch. By submitting a change you confirm that:
- You wrote the code (or have the right to contribute it), and
- You’re happy for it to be released under this project’s MIT license.
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_session_security_continued-3.0.0a1.tar.gz.
File metadata
- Download URL: django_session_security_continued-3.0.0a1.tar.gz
- Upload date:
- Size: 14.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4903678fd4dcc977cb2afc6354e5ee3737a5da2e2f2a371c3b6fad78f99139d
|
|
| MD5 |
37c402ec0074ec6c0b89173e4d63c55d
|
|
| BLAKE2b-256 |
1bb6910145823e73faaf4def0716512a571000899e7398262503df501c953771
|
File details
Details for the file django_session_security_continued-3.0.0a1-py3-none-any.whl.
File metadata
- Download URL: django_session_security_continued-3.0.0a1-py3-none-any.whl
- Upload date:
- Size: 18.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd22ff0ca6306ea522a4a20205362d8d8bf1bd6ca8559089003015c4120f623f
|
|
| MD5 |
a6236e7119a5924ffc0cee438cf9ef69
|
|
| BLAKE2b-256 |
dce12f3e788a6d5c49c59a33e20dcf46f6a8eed63c60bc9733d80de2bd94d5df
|