Fix isDotDot to recognize ..%2e and %2e.. path segments#9453
Open
leno23 wants to merge 1 commit into
Open
Conversation
HttpUrl.resolve() left ..%2e and %2e.. in the encoded path instead of normalizing them like other percent-encoded dot-dot forms. This could bypass path-prefix sandbox checks that rely on encodedPath(). Fixes square#9451 Co-authored-by: Cursor <cursoragent@cursor.com>
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.
Summary
HttpUrl.Builder.isDotDot()to treat..%2eand%2e..as dot-dot segments, matching RFC 3986 §6.2.2.3 normalization semantics already applied to%2e.,.%2e, and%2e%2e.HttpUrlTest.relativePath()for the missing encoded forms (including uppercase%2Evariants).Fixes #9451
Problem
HttpUrl.resolve()left..%2eand%2e..in the encoded path instead of collapsing them. Code that validatesencodedPath()against a prefix (e.g./static/) could be bypassed when downstream components percent-decode%2elater.Test plan
./gradlew :okhttp:jvmTest --tests "okhttp3.HttpUrlTest.relativePath"base.resolve("..%2e")andbase.resolve("%2e..")normalize to the parent path instead of leaving literal encoded segmentsMade with Cursor