mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 13:47:37 +03:00
Convert filesystem paths safely to paths
This only becomes a problem if the OS/filesystem allows / in filenames or . respectively .. as filenames.
This commit is contained in:
parent
bcaf452e51
commit
eed37792ae
2 changed files with 19 additions and 1 deletions
|
@ -40,6 +40,18 @@ def sanitize_path(path):
|
|||
return new_path + trailing_slash
|
||||
|
||||
|
||||
def is_safe_path_component(path):
|
||||
"""Checks if path is a single component of a path and is safe to join"""
|
||||
if not path:
|
||||
return False
|
||||
head, _ = posixpath.split(path)
|
||||
if head:
|
||||
return False
|
||||
if path in (".", ".."):
|
||||
return False
|
||||
return True
|
||||
|
||||
|
||||
def is_safe_filesystem_path_component(path):
|
||||
"""Checks if path is a single component of a local filesystem path
|
||||
and is safe to join"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue