def audited_logout(request, *args, **kwargs): # share some useful information func = auth_views.logout logging.info("Function: %s" % (func.__name__)) logging.info("Logged logout for user %s" % (request.user.username)) user = request.user # it's a successful login. ip = request.META.get('REMOTE_ADDR', '') ua = request.META.get('HTTP_USER_AGENT', '<unknown>') attempt = AccessAudit() attempt.doc_type = AccessAudit.__name__ attempt.access_type = models.ACCESS_LOGOUT attempt.user_agent = ua attempt.user = user.username attempt.session_key = request.session.session_key attempt.ip_address = ip attempt.get_data = [] attempt.post_data = [] attempt.http_accept = request.META.get('HTTP_ACCEPT', '<unknown>') attempt.path_info = request.META.get('PATH_INFO', '<unknown>') attempt.failures_since_start = 0 attempt.save() # call the logout function response = func(request, *args, **kwargs) return response
def audited_logout (request, *args, **kwargs): # share some useful information func = auth_views.logout logging.info("Function: %s" %(func.__name__)) logging.info("Logged logout for user %s" % (request.user.username)) user = request.user # it's a successful login. ip = request.META.get('REMOTE_ADDR', '') ua = request.META.get('HTTP_USER_AGENT', '<unknown>') attempt = AccessAudit() attempt.doc_type=AccessAudit.__name__ attempt.access_type = models.ACCESS_LOGOUT attempt.user_agent=ua attempt.user = user.username attempt.session_key = request.session.session_key attempt.ip_address=ip attempt.get_data=[] attempt.post_data=[] attempt.http_accept=request.META.get('HTTP_ACCEPT', '<unknown>') attempt.path_info=request.META.get('PATH_INFO', '<unknown>') attempt.failures_since_start=0 attempt.save() # call the logout function response = func(request, *args, **kwargs) return response
def decorated_logout(request, *args, **kwargs): # share some useful information if func.__name__ != 'decorated_logout' and VERBOSE: log.info('AXES: Calling decorated logout function: %s', func.__name__) if args: log.info('args: %s', args) if kwargs: log.info('kwargs: %s', kwargs) log.info("Function: %s", func.__name__) log.info("Logged logout for user %s", request.user.username) user = request.user #it's a successful login. ip = request.META.get('REMOTE_ADDR', '') ua = request.META.get('HTTP_USER_AGENT', '<unknown>') attempt = AccessAudit() attempt.doc_type = AccessAudit.__name__ attempt.access_type = models.ACCESS_LOGOUT attempt.user_agent = ua attempt.user = user.username attempt.session_key = request.session.session_key attempt.ip_address = ip attempt.get_data = [] #[query2str(request.GET.items())] attempt.post_data = [] attempt.http_accept = request.META.get('HTTP_ACCEPT', '<unknown>') attempt.path_info = request.META.get('PATH_INFO', '<unknown>') attempt.failures_since_start = 0 attempt.save() # call the logout function response = func(request, *args, **kwargs) if func.__name__ == 'decorated_logout': # if we're dealing with this function itself, don't bother checking # for invalid login attempts. I suppose there's a bunch of # recursion going on here that used to cause one failed login # attempt to generate 10+ failed access attempt records (with 3 # failed attempts each supposedly) return response return response
def decorated_logout (request, *args, **kwargs): # share some useful information if func.__name__ != 'decorated_logout' and VERBOSE: log.info('AXES: Calling decorated logout function: %s', func.__name__) if args: log.info('args: %s', args) if kwargs: log.info('kwargs: %s', kwargs) log.info("Function: %s", func.__name__) log.info("Logged logout for user %s", request.user.username) user = request.user #it's a successful login. ip = request.META.get('REMOTE_ADDR', '') ua = request.META.get('HTTP_USER_AGENT', '<unknown>') attempt = AccessAudit() attempt.doc_type=AccessAudit.__name__ attempt.access_type = models.ACCESS_LOGOUT attempt.user_agent=ua attempt.user = user.username attempt.session_key = request.session.session_key attempt.ip_address=ip attempt.get_data=[] #[query2str(request.GET.items())] attempt.post_data=[] attempt.http_accept=request.META.get('HTTP_ACCEPT', '<unknown>') attempt.path_info=request.META.get('PATH_INFO', '<unknown>') attempt.failures_since_start=0 attempt.save() # call the logout function response = func(request, *args, **kwargs) if func.__name__ == 'decorated_logout': # if we're dealing with this function itself, don't bother checking # for invalid login attempts. I suppose there's a bunch of # recursion going on here that used to cause one failed login # attempt to generate 10+ failed access attempt records (with 3 # failed attempts each supposedly) return response return response