Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
19dc5361
Commit
19dc5361
authored
Jul 11, 2019
by
Adam Hegyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Queries for Upload should be scoped by model
parent
d9a4ef1c
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
48 additions
and
2 deletions
+48
-2
app/controllers/concerns/uploads_actions.rb
app/controllers/concerns/uploads_actions.rb
+1
-1
app/uploaders/records_uploads.rb
app/uploaders/records_uploads.rb
+1
-1
ee/changelogs/unreleased/security-60551-fix-upload-scope-ee.yml
...ngelogs/unreleased/security-60551-fix-upload-scope-ee.yml
+5
-0
spec/controllers/groups/uploads_controller_spec.rb
spec/controllers/groups/uploads_controller_spec.rb
+5
-0
spec/controllers/projects/uploads_controller_spec.rb
spec/controllers/projects/uploads_controller_spec.rb
+5
-0
spec/support/shared_examples/controllers/uploads_actions_shared_examples.rb
...d_examples/controllers/uploads_actions_shared_examples.rb
+10
-0
spec/uploaders/records_uploads_spec.rb
spec/uploaders/records_uploads_spec.rb
+21
-0
No files found.
app/controllers/concerns/uploads_actions.rb
View file @
19dc5361
...
@@ -90,7 +90,7 @@ module UploadsActions
...
@@ -90,7 +90,7 @@ module UploadsActions
return
unless
uploader
=
build_uploader
return
unless
uploader
=
build_uploader
upload_paths
=
uploader
.
upload_paths
(
params
[
:filename
])
upload_paths
=
uploader
.
upload_paths
(
params
[
:filename
])
upload
=
Upload
.
find_by
(
uploader:
uploader_class
.
to_s
,
path:
upload_paths
)
upload
=
Upload
.
find_by
(
model:
model
,
uploader:
uploader_class
.
to_s
,
path:
upload_paths
)
upload
&
.
build_uploader
upload
&
.
build_uploader
end
end
# rubocop: enable CodeReuse/ActiveRecord
# rubocop: enable CodeReuse/ActiveRecord
...
...
app/uploaders/records_uploads.rb
View file @
19dc5361
...
@@ -35,7 +35,7 @@ module RecordsUploads
...
@@ -35,7 +35,7 @@ module RecordsUploads
end
end
def
readd_upload
def
readd_upload
uploads
.
where
(
path:
upload_path
).
delete_all
uploads
.
where
(
model:
model
,
path:
upload_path
).
delete_all
upload
.
delete
if
upload
upload
.
delete
if
upload
self
.
upload
=
build_upload
.
tap
(
&
:save!
)
self
.
upload
=
build_upload
.
tap
(
&
:save!
)
...
...
ee/changelogs/unreleased/security-60551-fix-upload-scope-ee.yml
0 → 100644
View file @
19dc5361
---
title
:
Queries for Upload should be scoped by model
merge_request
:
author
:
type
:
security
spec/controllers/groups/uploads_controller_spec.rb
View file @
19dc5361
...
@@ -10,6 +10,11 @@ describe Groups::UploadsController do
...
@@ -10,6 +10,11 @@ describe Groups::UploadsController do
{
group_id:
model
}
{
group_id:
model
}
end
end
let
(
:other_model
)
{
create
(
:group
,
:public
)
}
let
(
:other_params
)
do
{
group_id:
other_model
}
end
it_behaves_like
'handle uploads'
do
it_behaves_like
'handle uploads'
do
let
(
:uploader_class
)
{
NamespaceFileUploader
}
let
(
:uploader_class
)
{
NamespaceFileUploader
}
end
end
...
...
spec/controllers/projects/uploads_controller_spec.rb
View file @
19dc5361
...
@@ -10,6 +10,11 @@ describe Projects::UploadsController do
...
@@ -10,6 +10,11 @@ describe Projects::UploadsController do
{
namespace_id:
model
.
namespace
.
to_param
,
project_id:
model
}
{
namespace_id:
model
.
namespace
.
to_param
,
project_id:
model
}
end
end
let
(
:other_model
)
{
create
(
:project
,
:public
)
}
let
(
:other_params
)
do
{
namespace_id:
other_model
.
namespace
.
to_param
,
project_id:
other_model
}
end
it_behaves_like
'handle uploads'
it_behaves_like
'handle uploads'
context
'when the URL the old style, without /-/system'
do
context
'when the URL the old style, without /-/system'
do
...
...
spec/support/shared_examples/controllers/uploads_actions_shared_examples.rb
View file @
19dc5361
...
@@ -74,6 +74,16 @@ shared_examples 'handle uploads' do
...
@@ -74,6 +74,16 @@ shared_examples 'handle uploads' do
UploadService
.
new
(
model
,
jpg
,
uploader_class
).
execute
UploadService
.
new
(
model
,
jpg
,
uploader_class
).
execute
end
end
context
'when accessing a specific upload via different model'
do
it
'responds with status 404'
do
params
.
merge!
(
other_params
)
show_upload
expect
(
response
).
to
have_gitlab_http_status
(
404
)
end
end
context
"when the model is public"
do
context
"when the model is public"
do
before
do
before
do
model
.
update_attribute
(
:visibility_level
,
Gitlab
::
VisibilityLevel
::
PUBLIC
)
model
.
update_attribute
(
:visibility_level
,
Gitlab
::
VisibilityLevel
::
PUBLIC
)
...
...
spec/uploaders/records_uploads_spec.rb
View file @
19dc5361
...
@@ -85,6 +85,27 @@ describe RecordsUploads do
...
@@ -85,6 +85,27 @@ describe RecordsUploads do
expect
{
existing
.
reload
}.
to
raise_error
(
ActiveRecord
::
RecordNotFound
)
expect
{
existing
.
reload
}.
to
raise_error
(
ActiveRecord
::
RecordNotFound
)
expect
(
Upload
.
count
).
to
eq
(
1
)
expect
(
Upload
.
count
).
to
eq
(
1
)
end
end
it
'does not affect other uploads with different model but the same path'
do
project
=
create
(
:project
)
other_project
=
create
(
:project
)
uploader
=
RecordsUploadsExampleUploader
.
new
(
other_project
)
upload_for_project
=
Upload
.
create!
(
path:
File
.
join
(
'uploads'
,
'rails_sample.jpg'
),
size:
512
.
kilobytes
,
model:
project
,
uploader:
uploader
.
class
.
to_s
)
uploader
.
store!
(
upload_fixture
(
'rails_sample.jpg'
))
upload_for_project_fresh
=
Upload
.
find
(
upload_for_project
.
id
)
expect
(
upload_for_project
).
to
eq
(
upload_for_project_fresh
)
expect
(
Upload
.
count
).
to
eq
(
2
)
end
end
end
describe
'#destroy_upload callback'
do
describe
'#destroy_upload callback'
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment