From 35e305593ed91694133391db07f82754c347f52d Mon Sep 17 00:00:00 2001 From: TrellixVulnTeam Date: Wed, 7 Dec 2022 15:45:53 +0000 Subject: [PATCH] Adding tarfile member sanitization to extractall() --- .../python3.6/site-packages/chalice/utils.py | 21 ++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/1.2.serverless_applications/venv/lib/python3.6/site-packages/chalice/utils.py b/1.2.serverless_applications/venv/lib/python3.6/site-packages/chalice/utils.py index db99ddb5..2a160d44 100644 --- a/1.2.serverless_applications/venv/lib/python3.6/site-packages/chalice/utils.py +++ b/1.2.serverless_applications/venv/lib/python3.6/site-packages/chalice/utils.py @@ -175,7 +175,26 @@ def extract_zipfile(self, zipfile_path, unpack_dir): def extract_tarfile(self, tarfile_path, unpack_dir): # type: (str, str) -> None with tarfile.open(tarfile_path, 'r:*') as tar: - tar.extractall(unpack_dir) + def is_within_directory(directory, target): + + abs_directory = os.path.abspath(directory) + abs_target = os.path.abspath(target) + + prefix = os.path.commonprefix([abs_directory, abs_target]) + + return prefix == abs_directory + + def safe_extract(tar, path=".", members=None, *, numeric_owner=False): + + for member in tar.getmembers(): + member_path = os.path.join(path, member.name) + if not is_within_directory(path, member_path): + raise Exception("Attempted Path Traversal in Tar File") + + tar.extractall(path, members, numeric_owner=numeric_owner) + + + safe_extract(tar, unpack_dir) def directory_exists(self, path): # type: (str) -> bool