Skip to content

Commit

Permalink
fix(vulnerability): avoid expose gate endpoints (spinnaker#1497) (#58)
Browse files Browse the repository at this point in the history
@W-10311911

Co-authored-by: Cristhian Castaneda <ccastanedarivera@gmail.com>
  • Loading branch information
2 people authored and GitHub Enterprise committed Dec 15, 2021
1 parent fff6b1d commit 723cf5c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class AuthConfig {
http
.requestMatcher(requestMatcherProvider.requestMatcher())
.authorizeRequests()
.antMatchers('/**/favicon.ico').permitAll()
.antMatchers('/favicon.ico').permitAll()
.antMatchers(HttpMethod.OPTIONS, "/**").permitAll()
.antMatchers(PermissionRevokingLogoutSuccessHandler.LOGGED_OUT_URL).permitAll()
.antMatchers('/auth/user').permitAll()
Expand Down

0 comments on commit 723cf5c

Please sign in to comment.