Skip to content
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

Code scanning alertsのDisabled Spring CSRF protectionに対応 #1771

Merged
Show file tree
Hide file tree
Changes from all commits
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 @@ -38,7 +38,6 @@ public class WebSecurityConfig {
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
JwtAuthenticationConverter converter = new JwtAuthenticationConverter();
http.securityMatcher("/api/**")
.csrf(csrf -> csrf.disable())
.cors(cors -> cors.configurationSource(request -> {
CorsConfiguration conf = new CorsConfiguration();
conf.setAllowCredentials(true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ public class WebSecurityConfig {
public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
http
.securityMatcher("/api/**")
.csrf(csrf -> csrf.disable())
// CSRF トークンを利用したリクエストの検証を無効化( OAuth2.0 による認証認可を利用する前提のため)
// OAuth2.0 によるリクエストの検証を利用しない場合は、有効化して CSRF 対策を施す
.csrf(csrf -> csrf.ignoringRequestMatchers("/api/**"))
.cors(cors -> cors.configurationSource(request -> {
CorsConfiguration conf = new CorsConfiguration();
conf.setAllowCredentials(true);
Expand Down
Loading