Security: Open Redirect Vulnerability in Redirect Endpoint#336
Open
tuanaiseo wants to merge 1 commit into
Open
Conversation
…ndpoint The redirect endpoint at src/controllers/kitchen-sink/redirect.controllers.js allows arbitrary URL redirection. While there is a validator using isURL(), this validation can be bypassed with certain URL formats (e.g., data: URLs, javascript: URLs, or other protocols). An attacker could craft a malicious URL to redirect users to phishing sites. Affected files: redirect.controllers.js Signed-off-by: tuanaiseo <221258316+tuanaiseo@users.noreply.github.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.
Problem
The redirect endpoint at src/controllers/kitchen-sink/redirect.controllers.js allows arbitrary URL redirection. While there is a validator using isURL(), this validation can be bypassed with certain URL formats (e.g., data: URLs, javascript: URLs, or other protocols). An attacker could craft a malicious URL to redirect users to phishing sites.
Severity:
highFile:
src/controllers/kitchen-sink/redirect.controllers.jsSolution
Implement a whitelist of allowed domains or use a URL parsing library to validate and restrict redirects to internal domains only. Consider using a function like: const allowedDomains = ['example.com', 'localhost']; const parsedUrl = new URL(url); if (!allowedDomains.includes(parsedUrl.hostname)) return res.status(400).json({error: 'Invalid redirect URL'});
Changes
src/controllers/kitchen-sink/redirect.controllers.js(modified)Testing