spring-security icon indicating copy to clipboard operation
spring-security copied to clipboard

Spring Security

Results 621 spring-security issues
Sort by recently updated
recently updated
newest added

**Expected Behavior** When there a multiple filter chains configured for any request, Spring Security should make it as easy as possible for the user to correct their configuration mistake by...

in: config
type: enhancement
for: team-attention

**Describe the bug** I have two endpoints with path variables. One endpoint is specified with two path variables and the other with one path variable. I want to open the...

in: web
type: bug

The PR aims to fix the `DefaultLoginPageConfigurerTests.loginPageWhenErrorThenDefaultLoginPageWithError()` failure given the system language is set to something else than english. When asserting the Bad credentials login page, the expected template contains...

status: waiting-for-triage

To reduce code duplication between `InMemoryOneTimeTokenService` and `JdbcOneTimeTokenService`, need to separate out the shared code in `AbstractOneTimeTokenService`. This class can be made part of public API so that developers can...

status: waiting-for-triage
type: enhancement

To active OIDC Back-Channel Logout support in the DSL, an application does this: ```java http .oidcLogout((oidc) -> oidc.backChannel(Customizer.withDefaults()) ) ``` This could be simplified to: ```java http .oidcBackChannelLogout(Customizer.withDefaults()) ``` This...

type: enhancement
in: oauth2

**Describe the bug** Spring SAML considers NameID to hold username, populates `Saml2AuthenticatedPrincipal#name` with NameID value and later in Single Logout flow again populates/validates NameID value using Principal Name. This behaviour...

type: enhancement
in: saml2

I recently upgraded our Spring Boot application from version 2.4.3 to 3.3.3. Although I saw some tickets related to this issue that were previously closed, the issue has resurfaced in...

in: web
status: feedback-provided

The current default in Spring Security is that all its observations--filter chain, authentication, and authorization--are made. In #15678, `SecurityObservationSettings` was added so that applications could easily change these settings. Its...

in: config
type: enhancement
type: breaks-passivity

**Describe the bug** Once I added a `DispatcherServlet` to my EAR application deployed on JBoss 7.4, I started to get the following exception: ``` Exception handling request to /myapp/rest/foo/hello: java.lang.IllegalArgumentException:...

for: stackoverflow
status: feedback-provided

**Describe the bug** Apparently, neither the ID token nor the `userinfo` are updated during the refresh token flow in Spring clients with `oauth2Login`. This has at least two consequences: -...

type: bug
in: oauth2