Skip to content

Commit

Permalink
Issue #26171: Prevent buffer overflow in get_data
Browse files Browse the repository at this point in the history
Backport of 01ddd608b85c.
  • Loading branch information
berkerpeksag committed Sep 14, 2016
1 parent 1f0e7c9 commit d751040
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Misc/NEWS
Expand Up @@ -10,6 +10,9 @@ What's New in Python 3.3.7?
Core and Builtins
-----------------

- Issue #26171: Fix possible integer overflow and heap corruption in
zipimporter.get_data().

- Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.

- Issue #24407: Fix crash when dict is mutated while being updated.
Expand Down
5 changes: 5 additions & 0 deletions Modules/zipimport.c
Expand Up @@ -1089,6 +1089,11 @@ get_data(PyObject *archive, PyObject *toc_entry)
PyMarshal_ReadShortFromFile(fp); /* local header size */
file_offset += l; /* Start of file data */

if (data_size > LONG_MAX - 1) {
fclose(fp);
PyErr_NoMemory();
return NULL;
}
bytes_size = compress == 0 ? data_size : data_size + 1;
if (bytes_size == 0)
bytes_size++;
Expand Down

0 comments on commit d751040

Please sign in to comment.