Conversation
lsd-cat
requested changes
Aug 19, 2026
| ); | ||
| export function isSameOriginURL(target: string, base: string) { | ||
| const baseURL = new URL(base); | ||
| const targetURL = new URL(target, baseURL); |
Member
There was a problem hiding this comment.
new URL can throw on malformed URLs, and I don't think we catch that anywhere. Without #178 I think that could result in a WEBCAT bypass?
Member
There was a problem hiding this comment.
Great! I wonder if an alternative to #178 could be instead to lint for uncaught throws or errors in CI instead, I'm gonna investigate a bit! Thanks for the patch here :)
lsd-cat
approved these changes
Aug 19, 2026
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.
Fixes #220.
It's worth noting that the URL constructor used in this PR and Firefox's internal URL parsing for Location headers don't behave exactly the same way: specifically, the URL constructor strips ASCII whitespace throughout the URL, while Firefox's internal handling only trims whitespace from the start of the URL. That means a URL like
https\t://example.com/appears absolute to the URL constructor but actually triggers a relative redirect. This PR doesn't address that issue, because the failure mode is safe.