fix(security): validate redirect_uri in external token grant flow#212
Merged
Conversation
The external-application API-token grant page took redirect_uri verbatim from the query string and navigated window.location to it with the freshly minted token spliced in, allowing an attacker to exfiltrate a live token to an arbitrary origin via a crafted consent link. Add isValidTokenRedirectUri() which allows custom application schemes and loopback http(s) targets but rejects remote origins and dangerous schemes (javascript:/data:/...). Validate redirect_uri at parse time and encodeURIComponent the token when building the redirect target.
Member
|
why not, whitelist http* only? aren't we already doing that? |
Member
|
nvm we need custom protos, but we need to allow any host for http, not just localhost |
LucHeart
requested changes
Jun 18, 2026
LucHeart
left a comment
Member
There was a problem hiding this comment.
allow any host, not just localhost
Contributor
Author
|
We do allow any host, but it must be https to not be localhost |
LucHeart
approved these changes
Jun 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.
The external-application API-token grant page took redirect_uri verbatim from the query string and navigated window.location to it with the freshly minted token spliced in, allowing an attacker to exfiltrate a live token to an arbitrary origin via a crafted consent link.
Add isValidTokenRedirectUri() which allows custom application schemes and loopback http(s) targets but rejects remote origins and dangerous schemes (javascript:/data:/...). Validate redirect_uri at parse time and encodeURIComponent the token when building the redirect target.