Nityam/fix private assets authorization#3968
Merged
raclim merged 3 commits intoprocessing:developfrom Mar 9, 2026
Merged
Conversation
raclim
reviewed
Mar 9, 2026
raclim
approved these changes
Mar 9, 2026
Collaborator
raclim
left a comment
There was a problem hiding this comment.
Thanks so much for adding in the tests, this is an awesome start!
Contributor
Author
thank you!! |
Member
|
Nice tests, thanks! |
Contributor
Author
thank you!! |
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.
Issue:
Fixes #3904
The
getProjectAsset()endpoint was serving project assets (files, images) for any project ID without checking the project'svisibilitysetting. This security vulnerability allowed anyone who knew or guessed a project ID to access Private project assets, even when logged out or as a different user. While project listings correctly filter by visibility, this endpoint did not enforce the same authorization checks.Changes:
Added authorization check to
getProjectAsset():Security improvements:
/full/:project_id/*,/embed/:project_id/*,/:username/sketches/:project_id/*,/present/:project_id/*Added comprehensive test coverage:
Files changed:
server/controllers/project.controller.js: Added visibility and ownership check togetProjectAssetfunctionserver/controllers/project.controller/__test__/getProjectAsset.test.js: Added comprehensive test suiteI have verified that this pull request:
npm run lint)npm run test)npm run typecheck)developbranch.Fixes #3904