Skip to content

Content-Disposition added for @ResponseBody methods explicitly mapped to ".html" or other extensions [SPR-13629] #18207

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

Closed
spring-projects-issues opened this issue Nov 1, 2015 · 4 comments
Assignees
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) status: backported An issue that has been backported to maintenance branches type: bug A general bug
Milestone

Comments

@spring-projects-issues
Copy link
Collaborator

spring-projects-issues commented Nov 1, 2015

Rossen Stoyanchev opened SPR-13629 and commented

The fix to protect against RFD exploits (#18124) introduced a "Content-Disposition:attachment;filename=f.txt" response header for @ResponseBody methods where the URL appears to have an extension that is neither whitelisted by default nor explicitly registered by the application.

By default ".html" is not whitelisted since a controller method returning String can be rendered as any requested content type (since StringHttpMessageConverter accepts "*/*") and in the case of HTML that can lead to XSS and RFD attacks.

However as commented under Spring Boot #4220 we should consider ways to make it straight-forward to render HTML via @ResponseBody when that is the actual intent.

spring-projects/spring-boot#4220 (comment)


Affects: 3.2.15, 4.1.8, 4.2.2

Issue Links:

Referenced from: commits f2e4da3, 237439e, d500d52, e190f26, 6a9329c, bdb71e9

Backported to: 4.1.9, 3.2.16

@spring-projects-issues
Copy link
Collaborator Author

Rossen Stoyanchev commented

There is some very good feedback under the Boot ticket 4220.

While it's reasonable not to whitelist "html" by default (thus exposing controller methods returning String) we can also eliminate the need to explicitly register ".html" for content negotiation purposes. For example if the mapping includes ".html" or has a produces condition we shouldn't need anything further.

@spring-projects-issues
Copy link
Collaborator Author

Rossen Stoyanchev commented

Re-opening and updating the title to a reflect a more general aim to fix this for any extension that's explicitly present in the mapping (not only ".html").

@spring-projects-issues
Copy link
Collaborator Author

Rossen Stoyanchev commented

This now works so that any extension explicitly present in a request mapping is okay. Furthermore, specifically for ".html" in the URL we do allow suffix pattern matching if the method explicitly states that it produces "text/html".

@spring-projects-issues
Copy link
Collaborator Author

blop commented

Can we disable this behaviour somehow ?
I'm not sure it's a good idea to assume every that HTTP client is be a web browser with all the security issues involved with it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) status: backported An issue that has been backported to maintenance branches type: bug A general bug
Projects
None yet
Development

No branches or pull requests

2 participants