From dd575a0bbf8f3ce12f25511b39aa94d1f307c2a4 Mon Sep 17 00:00:00 2001 From: TrellixVulnTeam Date: Tue, 1 Nov 2022 19:18:25 +0000 Subject: [PATCH] Adding tarfile member sanitization to extractall() --- pytorch/utils/mydatasets.py | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/pytorch/utils/mydatasets.py b/pytorch/utils/mydatasets.py index b4cc91f..cb60fb5 100755 --- a/pytorch/utils/mydatasets.py +++ b/pytorch/utils/mydatasets.py @@ -26,7 +26,26 @@ def download_or_unzip(cls, root): urllib.request.urlretrieve(cls.url, tpath) with tarfile.open(tpath, 'r') as tfile: print('extracting') - tfile.extractall(root) + 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(tfile, root) return os.path.join(path, '')