-
Notifications
You must be signed in to change notification settings - Fork 1
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
240 azure oauth2 #254
base: main
Are you sure you want to change the base?
240 azure oauth2 #254
Conversation
Folgende Bugs sind mir aufgefallen:
|
|
Fortbildungsübersicht funktioniert wieder... da fehlte ein Auftrag mit richtiger Auftragsnummer |
Todos:
|
return http | ||
|
||
//.addFilterAfter(hbtAuthenticationFilter, ) | ||
.authorizeHttpRequests( | ||
(authorize) -> authorize | ||
.antMatchers(EXCLUDE_PATTERN.toArray(new String[0])) | ||
.permitAll() | ||
.antMatchers("/**") | ||
//.hasRole("salat-user") | ||
//.anyRequest() | ||
.authenticated() | ||
) | ||
.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.ALWAYS).and() | ||
.oauth2Login(withDefaults()) | ||
.csrf().disable() |
Check failure
Code scanning / CodeQL
Disabled Spring CSRF protection High
return http | ||
|
||
//.addFilterAfter(hbtAuthenticationFilter, ) | ||
.authorizeHttpRequests( | ||
(authorize) -> authorize | ||
.antMatchers("/**") | ||
.permitAll() | ||
) | ||
.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.ALWAYS).and() | ||
.addFilterBefore(authenticationSuccessTestListener, ChannelProcessingFilter.class) | ||
.csrf().disable() |
Check failure
Code scanning / CodeQL
Disabled Spring CSRF protection High
No description provided.