You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to modify the URLs used for WebAuth authentication to be customized by WebAuthnConfigurer.
In webauthn4j-spring-security, it can modify the attachment options, assistance options, and login URLs through the configurator. webauthn4j-spring-security repository
I want to modify them to support that function within Spring Security.
Current Behavior
AS-IS WebAuthnConfigurer only provide default associated URL. It can find from WebAuthnAuthenticationFilter, WebAuthnRegistrationFilter, PublicKeyCredentialCreationOptionsFilter, PublicKeyCredentialRequestOptionsFilter.
The configure method in WebAuthConfigurer modifies the filter chain through those instances, but there is no custom option for the URLs mentioned.
Because it is difficult to customize these URLs with current Spring Security, the problem arises that backend applications are forced to follow them.
FormLoginConfigurer can customize LoginProcessingUrl . Similarly, I want to modify WebAuthnConfigurer and other filters so that URLs can be customized in that Configurator.
The immediate way to come to mind is to add URLs to the field values of WebAuthConfigurer and modify them to be set through the public method, but it may need to modify the creators of the filters together.
The text was updated successfully, but these errors were encountered:
Expected Behavior
I want to modify the URLs used for WebAuth authentication to be customized by WebAuthnConfigurer.
In webauthn4j-spring-security, it can modify the attachment options, assistance options, and login URLs through the configurator.
webauthn4j-spring-security repository
I want to modify them to support that function within Spring Security.
Current Behavior
AS-IS WebAuthnConfigurer only provide default associated URL. It can find from WebAuthnAuthenticationFilter, WebAuthnRegistrationFilter, PublicKeyCredentialCreationOptionsFilter, PublicKeyCredentialRequestOptionsFilter.
The configure method in WebAuthConfigurer modifies the filter chain through those instances, but there is no custom option for the URLs mentioned.
Context
Because it is difficult to customize these URLs with current Spring Security, the problem arises that backend applications are forced to follow them.
FormLoginConfigurer can customize LoginProcessingUrl . Similarly, I want to modify WebAuthnConfigurer and other filters so that URLs can be customized in that Configurator.
The immediate way to come to mind is to add URLs to the field values of WebAuthConfigurer and modify them to be set through the public method, but it may need to modify the creators of the filters together.
The text was updated successfully, but these errors were encountered: