Skip to content

Fix Infinite recursion WebSecurityConfigurerAdapter.java #11071

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,9 @@ static final class UserDetailsServiceDelegator implements UserDetailsService {
@Override
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
if (this.delegate != null) {
if (this == this.delegate) {
throw new IllegalStateException("Infinite recursion occured while loading user by name.");
}
return this.delegate.loadUserByUsername(username);
}
synchronized (this.delegateMonitor) {
Expand Down Expand Up @@ -511,6 +514,9 @@ static final class AuthenticationManagerDelegator implements AuthenticationManag
@Override
public Authentication authenticate(Authentication authentication) throws AuthenticationException {
if (this.delegate != null) {
if (this == this.delegate) {
throw new IllegalStateException("Infinite recursion occured while authenticate.");
}
return this.delegate.authenticate(authentication);
}
synchronized (this.delegateMonitor) {
Expand Down