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

240 azure oauth2 #254

Open
wants to merge 35 commits into
base: main
Choose a base branch
from
Open

240 azure oauth2 #254

wants to merge 35 commits into from

Conversation

youseeus
Copy link

No description provided.

@bas-hbt
Copy link
Contributor

bas-hbt commented Sep 28, 2023

Folgende Bugs sind mir aufgefallen:

  • Angelegte Buchungen können nicht gelöscht werden
  • Das "Speichern"-Icon ist nicht intuitiv als solches erkennbar
  • Bei Klick auf die Fortbildungsübersicht erscheint eine Fehlerseite trotz vorhandener Buchung auf Fortbildung

@youseeus
Copy link
Author

  • Buchungen können jetzt wieder gelöscht werden
  • *Speichern"-Icon ist wieder eine Diskette

@youseeus
Copy link
Author

Fortbildungsübersicht funktioniert wieder... da fehlte ein Auftrag mit richtiger Auftragsnummer

@youseeus
Copy link
Author

youseeus commented Oct 6, 2023

Todos:

  • Passwort ändern ausbauen
  • AzureAD-Mock für e2e-Test

Comment on lines +37 to +51
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

CSRF vulnerability due to protection being disabled.
Comment on lines +37 to +47
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

CSRF vulnerability due to protection being disabled.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants