mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 13:47:37 +03:00
Convert paths safely to file system paths
With the old implementation on Windows a path like "/c:/file/ignore" got converted to "c:\file" and allowed access to files outside of FOLDER
This commit is contained in:
parent
6b7e79a368
commit
b4b3d51f33
3 changed files with 77 additions and 33 deletions
|
@ -20,8 +20,11 @@ Helper functions for working with paths
|
|||
|
||||
"""
|
||||
|
||||
import os
|
||||
import posixpath
|
||||
|
||||
from . import log
|
||||
|
||||
|
||||
def sanitize_path(path):
|
||||
"""Make absolute (with leading slash) to prevent access to other data.
|
||||
|
@ -34,4 +37,36 @@ def sanitize_path(path):
|
|||
continue
|
||||
new_path = posixpath.join(new_path, part)
|
||||
trailing_slash = "" if new_path.endswith("/") else trailing_slash
|
||||
return new_path + trailing_slash
|
||||
return new_path + trailing_slash
|
||||
|
||||
|
||||
def is_safe_filesystem_path_component(path):
|
||||
"""Checks if path is a single component of a local filesystem path
|
||||
and is safe to join"""
|
||||
if not path:
|
||||
return False
|
||||
drive, _ = os.path.splitdrive(path)
|
||||
if drive:
|
||||
return False
|
||||
head, _ = os.path.split(path)
|
||||
if head:
|
||||
return False
|
||||
if path in (os.curdir, os.pardir):
|
||||
return False
|
||||
return True
|
||||
|
||||
|
||||
def path_to_filesystem(path, base_folder):
|
||||
"""Converts path to a local filesystem path relative to base_folder
|
||||
in a secure manner or raises ValueError."""
|
||||
sane_path = sanitize_path(path).strip("/")
|
||||
safe_path = base_folder
|
||||
if not sane_path:
|
||||
return safe_path
|
||||
for part in sane_path.split("/"):
|
||||
if not is_safe_filesystem_path_component(part):
|
||||
log.LOGGER.debug("Can't translate path safely to filesystem: %s",
|
||||
path)
|
||||
raise ValueError("Unsafe path")
|
||||
safe_path = os.path.join(safe_path, part)
|
||||
return safe_path
|
Loading…
Add table
Add a link
Reference in a new issue