Skip to content

Commit

Permalink
Merge pull request #176 from TrellixVulnTeam/master
Browse files Browse the repository at this point in the history
  • Loading branch information
Lioscro committed Jan 14, 2023
2 parents 7aabc4b + 8bf75ec commit 0fa6a71
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion kb_python/ref.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,26 @@ def download_reference(

logger.info('Extracting files from {}'.format(local_path))
with tarfile.open(local_path, 'r:gz') as f:
f.extractall(temp_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(f, temp_dir)

for option in reference.files:
os.rename(
Expand Down

0 comments on commit 0fa6a71

Please sign in to comment.