-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Questions about CVE-2024-6763 in Jetty 11 #12584
Comments
Feel free to close if response to my question will be the same as in #12581 |
Actually, in our case we cannot go from jetty11 to jetty12-ee9 directly due to a "new" behaviour with welcome files. It doesn't work with the way how we set up our app. As workaround, I need to override doGet of org.eclipse.jetty.ee9.servlet.DefaultServlet with the following conditional logic to avoid 404 if servlet path is "/".
|
@dmiroshnikov not sure I understand your issue with |
We have multiple web apps with a common login, index.jsp forwards to the proper app based on a state. Internally we use the "/" uri and rely on welcome-file-list logic for forwarding to index.jsp. In jetty11, In jetty12-ee9 / jetty12-ee10, Content of defaultsDescriptor.xml
In my current workaround, DefaultServlet was overwritten to override doGet method to conditionally forward to index.jsp based on URI value. |
@dmiroshnikov your defaults descriptor is a bit odd, both for jetty-11 and jetty-12.
I need to see the request uri, path etc for the case where |
Are you planning to fix CVE-2024-6763 in jetty11 or we have to migrate to jetty12-ee9?
The text was updated successfully, but these errors were encountered: