WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion MDAnalysisData/adk_transitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,29 @@ def _fetch_adk_transitions(metadata, data_home=None, download_if_missing=True):

logger.info("Unpacking {}...".format(archive_path))
with tarfile.open(archive_path, 'r') as tar:
tar.extractall(path=data_location)

import os

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, path=data_location)

records.topology = join(data_location, metadata['CONTENTS']['topology'])
if not exists(records.topology):
Expand Down
24 changes: 23 additions & 1 deletion MDAnalysisData/vesicles.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,29 @@ def fetch_vesicle_lib(data_home=None, download_if_missing=True):

logger.info("Unpacking {}...".format(archive_path))
with tarfile.open(archive_path, 'r') as tar:
tar.extractall(path=data_location)

import os

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, path=data_location)

records.structures = [join(data_location, path) for path in metadata['CONTENTS']['structures']
if exists(join(data_location, path))]
Expand Down