-
- Downloads
Merge branch '19102-fix' into 'master'
Fix an information disclosure when requesting access to a group containing private projects Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/19102. The commit speaks for itself: Fix an information disclosure when requesting access to a group containing private projects The issue was with the `User#groups` and `User#projects` associations which goes through the `User#group_members` and `User#project_members`. Initially I chose to use a secure approach by storing the requester's user ID in `Member#created_by_id` instead of `Member#user_id` because I was aware that there was a security risk since I didn't know the codebase well enough. Then during the review, we decided to change that and directly store the requester's user ID into `Member#user_id` (for the sake of simplifying the code I believe), meaning that every `group_members` / `project_members` association would include the requesters by default... My bad for not checking that all the `group_members` / `project_members` associations and the ones that go through them (e.g. `Group#users` and `Project#users`) were made safe with the `where(requested_at: nil)` / `where(members: { requested_at: nil })` scopes. Now they are all secure. See merge request !1973
No related branches found
No related tags found
Showing
- app/controllers/dashboard/groups_controller.rb 1 addition, 1 deletionapp/controllers/dashboard/groups_controller.rb
- app/models/group.rb 1 addition, 1 deletionapp/models/group.rb
- app/models/user.rb 2 additions, 2 deletionsapp/models/user.rb
- app/views/admin/users/groups.html.haml 3 additions, 2 deletionsapp/views/admin/users/groups.html.haml
- spec/features/groups/members/user_requests_access_spec.rb 15 additions, 0 deletionsspec/features/groups/members/user_requests_access_spec.rb
- spec/models/user_spec.rb 20 additions, 0 deletionsspec/models/user_spec.rb
Please register or sign in to comment