This dead-simple piece of middleware adds a terrific security feature to django authentication. Currently, users who's accounts are de-activated still may have a cookie and a login session. This middleware destroys that session on their next request.
Simply add this class into a middleware.py and add it to your settings.
1 2 3 4 5 6 | from django.contrib.auth import logout
class StrictAuthentication:
def process_view(self,request,view_func,view_args,view_kwargs):
if request.user.is_authenticated() and not request.user.is_active:
logout(request)
|
More like this
- Form field with fixed value by roam 3 days ago
- New Snippet! by Antoliny0919 1 week, 2 days ago
- Add Toggle Switch Widget to Django Forms by OgliariNatan 2 months, 4 weeks ago
- get_object_or_none by azwdevops 6 months, 2 weeks ago
- Mask sensitive data from logger by agusmakmun 8 months, 2 weeks ago
Comments
Please login first before commenting.