Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CVE-2007-4559 Patch #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
21 changes: 20 additions & 1 deletion het_examples/ctr_models/models/load_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,26 @@ def download_criteo(path):
urllib.request.urlretrieve(origin, os.path.join(path, 'criteo.tar.gz'))
print("Extracting criteo zip...")
with tarfile.open(dataset) as f:
f.extractall(path=path)
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, path=path)
print("Create local files...")

# save csv filed
Expand Down
21 changes: 20 additions & 1 deletion language_models/prepare_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,26 @@ def _segment_and_write(sents, fname):
if not os.path.exists('de-en'):
print('Extracting iwslt2016...')
with tarfile.open(file_name) as tar:
tar.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, "./")

os.chdir('../')
hparams = Hparams()
Expand Down
21 changes: 20 additions & 1 deletion pstests/models/load_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,26 @@ def download_criteo(path):
urllib.request.urlretrieve(origin, os.path.join(path, 'criteo.tar.gz'))
print("Extracting criteo zip...")
with tarfile.open(dataset) as f:
f.extractall(path=path)
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, path=path)
print("Create local files...")

# save csv filed
Expand Down
21 changes: 20 additions & 1 deletion python/models/load_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,26 @@ def bar_update(count, block_size, total_size):
url = "https://www.cs.toronto.edu/~kriz/cifar-10-python.tar.gz"
urllib.request.urlretrieve(url, filename, reporthook=gen_bar_updater())
with tarfile.open(filename, 'r:gz') as tar:
tar.extractall(path=directory)
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=directory)

images, labels = [], []
for filename in file_lists[:5]:
Expand Down