Fix: path traversal in HttpServer default callback - #608
Merged
Conversation
The default HttpServer callback built the filesystem path as "." + uri without sanitizing .. segments, allowing a remote unauthenticated client to read files outside the document root with a request like GET /../secret.txt. Add sanitizeUri() which resolves . and .. lexically, clamping any attempt to escape above the virtual root so the path stays within the document root directory. Reported by Yeongtaek Yoo (GitHub: @yt010108). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.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
HttpServercallback built the filesystem path as"." + uriwithout sanitizing..segments, letting a remote unauthenticated client read files outside the document root (e.g.GET /../secret.txt).sanitizeUri()which resolves.and..lexically, clamping any escape above the virtual root so the resulting path always stays within the document root.response_head_filethat were over the 100-column limit.Affected entry points
IXHttpServerdefault connection callback (used by thehttpdexample andws httpdcommand when no custom callback is installed).Credit
Reported by Yeongtaek Yoo (GitHub: @yt010108).
Test plan
ws httpdfrom a directory that has a sibling directory with a secret file.curl http://localhost:<port>/../secret.txt— should return 404, not the file contents.curl http://localhost:<port>/index.html— should still serve normally.🤖 Generated with Claude Code