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

Support ServerWebExchangeFirewall @Bean #15974

Open
rwinch opened this issue Oct 22, 2024 · 0 comments
Open

Support ServerWebExchangeFirewall @Bean #15974

rwinch opened this issue Oct 22, 2024 · 0 comments
Assignees
Labels
in: web An issue in web modules (web, webmvc) type: bug A general bug
Milestone

Comments

@rwinch
Copy link
Member

rwinch commented Oct 22, 2024

Spring Security does not use the ServerWebExchangeFirewall Bean when exposed.

We should fix this, but in the meantime users can leverage a BeanPostProcessor approach.

@Bean
BeanPostProcessor beanPostProcessor() {
	return new BeanPostProcessor() {
		@Override
		public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
			if (bean instanceof WebFilterChainProxy) {
				WebFilterChainProxy springSecurity = (WebFilterChainProxy) bean;
				springSecurity.setFirewall(ServerWebExchangeFirewall.INSECURE_NOOP);
			}
			return bean;
		}
	};
}
@rwinch rwinch added status: waiting-for-triage An issue we've not yet triaged type: bug A general bug labels Oct 22, 2024
@rwinch rwinch self-assigned this Oct 22, 2024
@rwinch rwinch changed the title ServerWebExchangeFirewall Bean not Used Support ServerWebExchangeFirewall @Bean Oct 22, 2024
@rwinch rwinch added in: web An issue in web modules (web, webmvc) and removed status: waiting-for-triage An issue we've not yet triaged labels Oct 22, 2024
@rwinch rwinch added this to the 5.7.14 milestone Oct 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: web An issue in web modules (web, webmvc) type: bug A general bug
Projects
None yet
Development

No branches or pull requests

1 participant