Skip to content

Commit

Permalink
Merge pull request #30 from TrellixVulnTeam/master
Browse files Browse the repository at this point in the history
  • Loading branch information
giswqs committed Dec 14, 2022
2 parents 1b9c05c + afac2bd commit 74957ed
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion lidar/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,26 @@ def download_from_url(url, out_file_name=None, out_dir=".", unzip=True, verbose=
if verbose:
print("Unzipping {} ...".format(out_file_name))
with tarfile.open(out_file_path, "r") as tar_ref:
tar_ref.extractall(out_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_ref, out_dir)
final_path = os.path.join(
os.path.abspath(out_dir), out_file_name.replace(".tart", "")
)
Expand Down

0 comments on commit 74957ed

Please sign in to comment.