Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Chenhao Ma
core
Commits
453a9c49
Commit
453a9c49
authored
9 years ago
by
Nathaniel Kofalt
Browse files
Options
Downloads
Plain Diff
Merge pull request #86 from scitran/fix-vuln
Sanitize filepaths
parents
36b48614
df6476e6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
api/files.py
+3
-3
3 additions, 3 deletions
api/files.py
api/handlers/listhandler.py
+1
-0
1 addition, 0 deletions
api/handlers/listhandler.py
api/jobs.py
+1
-1
1 addition, 1 deletion
api/jobs.py
with
5 additions
and
4 deletions
api/files.py
+
3
−
3
View file @
453a9c49
...
...
@@ -34,7 +34,7 @@ def getHashingFieldStorage(upload_dir, hash_alg):
class
HashingFieldStorage
(
cgi
.
FieldStorage
):
bufsize
=
2
**
20
def
make_file
(
self
,
binary
=
None
):
self
.
open_file
=
HashingFile
(
os
.
path
.
join
(
upload_dir
,
self
.
filename
),
hash_alg
)
self
.
open_file
=
HashingFile
(
os
.
path
.
join
(
upload_dir
,
os
.
path
.
basename
(
self
.
filename
)
)
,
hash_alg
)
return
self
.
open_file
def
get_hash
(
self
):
...
...
@@ -80,14 +80,14 @@ class FileStore(object):
def
_save_multipart_file
(
self
,
dest_path
,
hash_alg
):
form
=
getHashingFieldStorage
(
dest_path
,
hash_alg
)(
fp
=
self
.
body
,
environ
=
self
.
environ
,
keep_blank_values
=
True
)
self
.
received_file
=
form
[
'
file
'
].
file
self
.
filename
=
form
[
'
file
'
].
filename
self
.
filename
=
os
.
path
.
basename
(
form
[
'
file
'
].
filename
)
self
.
tags
=
json
.
loads
(
form
[
'
tags
'
].
file
.
getvalue
())
if
'
tags
'
in
form
else
None
self
.
metadata
=
json
.
loads
(
form
[
'
metadata
'
].
file
.
getvalue
())
if
'
metadata
'
in
form
else
None
def
_save_body_file
(
self
,
dest_path
,
filename
,
hash_alg
):
if
not
filename
:
raise
FileStoreException
(
'
filename is required for body uploads
'
)
self
.
filename
=
filename
self
.
filename
=
os
.
path
.
basename
(
filename
)
self
.
received_file
=
HashingFile
(
os
.
path
.
join
(
dest_path
,
filename
),
hash_alg
)
for
chunk
in
iter
(
lambda
:
self
.
body
.
read
(
2
**
20
),
''
):
self
.
received_file
.
write
(
chunk
)
...
...
This diff is collapsed.
Click to expand it.
api/handlers/listhandler.py
+
1
−
0
View file @
453a9c49
...
...
@@ -384,6 +384,7 @@ class FileListHandler(ListHandler):
if
not
force
:
method
=
'
POST
'
else
:
filename
=
file_store
.
filename
filepath
=
os
.
path
.
join
(
file_store
.
path
,
filename
)
for
f
in
container
[
'
files
'
]:
if
f
[
'
name
'
]
==
filename
:
...
...
This diff is collapsed.
Click to expand it.
api/jobs.py
+
1
−
1
View file @
453a9c49
...
...
@@ -59,7 +59,7 @@ def spawn_jobs(db, containers, file):
File object that is used to spawn 0 or more jobs.
"""
if
file
[
'
type
'
]
!=
'
dicom
'
:
if
file
.
get
(
'
type
'
,
''
)
!=
'
dicom
'
:
return
# File information
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment