SEC-112: Bug when SecurityEnforcementFilter used with disabled Authentication and remember-me services.
This commit is contained in:
parent
47166fe078
commit
9ccaf05cc7
|
@ -279,6 +279,10 @@ public class SecurityEnforcementFilter implements Filter, InitializingBean {
|
|||
targetUrl);
|
||||
}
|
||||
|
||||
// SEC-112: Clear the SecurityContextHolder's Authentication, as the
|
||||
// existing Authentication is no longer considered valid
|
||||
SecurityContextHolder.getContext().setAuthentication(null);
|
||||
|
||||
authenticationEntryPoint.commence(request,
|
||||
(HttpServletResponse) fi.getResponse(), reason);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue