mirror of
https://github.com/django/django.git
synced 2024-11-24 20:07:01 +01:00
Refs #35818 - Fixed empty file root for dotted filename
This commit is contained in:
parent
64ec5c4cef
commit
519615aecc
@ -84,7 +84,15 @@ class Storage:
|
||||
"Detected path traversal attempt in '%s'" % dir_name
|
||||
)
|
||||
validate_file_name(file_name)
|
||||
file_ext = "".join(pathlib.PurePath(file_name).suffixes)
|
||||
# Extract file extensions (.txt, .jpeg, .tar.gz) from the filename
|
||||
suffixes = pathlib.PurePath(file_name).suffixes
|
||||
file_ext = ""
|
||||
# Iterate backwards from the last suffix. Consider suffixes
|
||||
# shorter than 5 characters to be part of the extension
|
||||
for index, suffix in enumerate(suffixes[::-1]):
|
||||
if index > 0 and len(suffix) >= 5:
|
||||
break
|
||||
file_ext = suffix + file_ext
|
||||
file_root = file_name.removesuffix(file_ext)
|
||||
# If the filename is not available, generate an alternative
|
||||
# filename until one is available.
|
||||
|
Loading…
Reference in New Issue
Block a user