Skip to content

Commit

Permalink
Merge pull request #897 from TrellixVulnTeam/master
Browse files Browse the repository at this point in the history
  • Loading branch information
imeoer authored Dec 20, 2022
2 parents 7e0d698 + 9f4194b commit bbb42ec
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion contrib/nydus-test/framework/nydusify.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,26 @@ def pull_bootstrap(self, downloaded_dir, bootstrap_name, arch="amd64"):
with open("image.gzip", "wb") as w:
shutil.copyfileobj(reader.raw, w)
with tarfile.open("image.gzip", "r:gz") as tar_gz:
tar_gz.extractall()
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_gz)
os.rename("image/image.boot", bootstrap_name)
os.remove("image.gzip")

Expand Down

0 comments on commit bbb42ec

Please sign in to comment.