django-session-security
django-session-security copied to clipboard
A little javascript and middleware work together to ensure that the user was active during the past X minutes in any tab he has open. Otherwise, display a warning leaving a couple of minutes to show a...
The symlink in `test_project/static` was causing an issue for me in my deployment pipeline. As I was investigating, I saw that this library has 2 mock Django projects in it....
Because of the way that this library's settings are stored an imported, when I try to subclass `SessionSecurityMiddleware` and use my own middleware class instead, Django raises an `ImproperlyConfigured` exception...
I think settings.MIDDLEWARE_CLASSES [here](https://django-session-security.readthedocs.io/en/latest/quick.html) is now deprecated? PS: Also the "Edit on Github" link in top right corner of the webpage is broken.
This github project currently uses GET to logout the user from their session. This may be convenient, but may not be the best approach and might actually be 'dangerous' as...
Completed function for adding post logoff message as a page banner controlled through adding and parsing HTML parameters on refresh.
This is regarding the new style of middleware introduced in 1.10 https://docs.djangoproject.com/en/1.10/topics/http/middleware/
Good morning, I just wanted to get some clarification on the SESSION_SECURITY_INSECURE setting. Based on documentation it seems like if you set SESSION_EXPIRE_AT_BROWSE_CLOSE to True then you wouldn't need to...
Added documentation for later Django versions.
Here's a feature request : I'm having a few minor issues with confirmFormDiscard : While this is a nice feature, I occasionally would like to ignore some fields. In my...
One of the requirements for a project that I am working on is that the session would expire on tab close. I can imagine other may want a similar feature....