Conversation
The Location header for the trailing-slash redirect is built from req.url. Only a leading run of '/' was collapsed, so /\host still produced a protocol relative target in browsers, and a URL made only of slashes made substr throw out_of_range.
gittiver
reviewed
Sep 17, 2026
gittiver
left a comment
Member
There was a problem hiding this comment.
the use of percent encoded / and \ needs also to be investigated.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The trailing-slash redirect in routing.h builds Location from req.url, and the fix for GHSA-x6vq-298x-6qgq only collapses a leading run of '/'. A request for /\attacker.example still gets Location: /\attacker.example/, which browsers resolve as //attacker.example/ so the open redirect remains, and a URL made only of slashes makes find_first_not_of return npos so the substr call throws out_of_range and the connection is left without a response. Both redirect sites now strip the leading run of '/' and '' and rebuild the target rooted at a single slash, with the existing redirect test extended to cover both inputs.