Skip to content

Commit

Permalink
i.landsat.import: Adding tarfile member sanitization to extractall() (C…
Browse files Browse the repository at this point in the history
  • Loading branch information
TrellixVulnTeam committed Dec 29, 2023
1 parent d37ce34 commit c94a8e3
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion src/imagery/i.landsat/i.landsat.import/i.landsat.import.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,25 @@ def _untar(inputdir, untardir):

for scene in scenes_to_untar:
with tarfile.open(name=scene, mode="r") as tar:
tar.extractall(untardir)

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 RuntimeError(_("Attempted path traversal in tar file"))

tar.extractall(path, members, numeric_owner=numeric_owner)

safe_extract(tar, untardir)

untared_tifs = glob.glob(os.path.join(untardir, "*.TIF"))
return untared_tifs
Expand Down

0 comments on commit c94a8e3

Please sign in to comment.