
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
django-session-security
Advanced tools
.. image:: https://img.shields.io/pypi/v/django-session-security.svg :target: https://pypi.python.org/pypi/django-session-security
.. image:: https://github.com/yourlabs/django-session-security/actions/workflows/tests.yml/badge.svg :target: https://github.com/yourlabs/django-session-security/actions
This app provides a mechanism to logout inactive authenticated users. An inactive browser should be logged out automatically if the user left his workstation, to protect sensitive data that may be displayed in the browser. It may be useful for CRMs, intranets, and such projects.
For example, if the user leaves for a coffee break, this app can force logout after say 5 minutes of inactivity.
Or "Why does this app even exist" ? Here are the reasons:
This app allows to short circuit those limitations in session expiry.
When the user loads a page, SessionSecurity middleware will set the last
activity to now. The last activity is stored as datetime
in request.session['_session_security']
. To avoid having the middleware
update that last activity datetime for a URL, add the url to
settings.SESSION_SECURITY_PASSIVE_URLS
.
When the user moves mouse, click, scroll or press a key, SessionSecurity will save the DateTime as a JavaScript attribute. It will send the number of seconds since when the last user activity was recorded to PingView, next time it should ping.
First, a warning should be shown after settings.SESSION_SECURITY_WARN_AFTER
seconds. The warning displays a text like "Your session is about to expire,
move the mouse to extend it".
Before displaying this warning, SessionSecurity will upload the time since the last client-side activity was recorded. The middleware will take it if it is shorter than what it already has - ie. another more recent activity was detected in another browser tab. The PingView will respond with the number of seconds since the last activity - all browser tab included.
If there was no other, more recent, activity recorded by the server: it will show the warning. Otherwise it will update the last activity in javascript from the PingView response.
Same goes to expire after settings.SESSION_SECURITY_EXPIRE_AFTER
seconds.
Javascript will first make an ajax request to PingView to ensure that another
more recent activity was not detected anywhere else - in any other browser tab.
You could subscribe to the mailing list ask questions or just be informed of package updates.
Git graciously hosted <https://github.com/yourlabs/django-session-security/>
_ by GitHub <http://github.com>
_,Documentation graciously hosted <http://django-session-security.rtfd.org>
_ by RTFD <http://rtfd.org>
_,Package graciously hosted <http://pypi.python.org/pypi/django-session-security/>
_ by PyPi <http://pypi.python.org/pypi>
_,Mailing list graciously hosted <http://groups.google.com/group/yourlabs>
_ by Google <http://groups.google.com>
_Continuous integration graciously hosted <http://travis-ci.org/yourlabs/django-session-security>
_ by Travis-ci <http://travis-ci.org>
_FAQs
Client and server side session timeout with warnings
We found that django-session-security demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.