Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
c4032da2
Kaydet (Commit)
c4032da2
authored
Ock 21, 2016
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
prevent buffer overflow in get_data (closes #26171)
üst
ef9cf083
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
NEWS
Misc/NEWS
+3
-0
zipimport.c
Modules/zipimport.c
+5
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
c4032da2
...
@@ -10,6 +10,9 @@ Release date: tba
...
@@ -10,6 +10,9 @@ Release date: tba
Core and Builtins
Core and Builtins
-----------------
-----------------
- Issue #26171: Fix possible integer overflow and heap corruption in
zipimporter.get_data().
Library
Library
-------
-------
...
...
Modules/zipimport.c
Dosyayı görüntüle @
c4032da2
...
@@ -1111,6 +1111,11 @@ get_data(PyObject *archive, PyObject *toc_entry)
...
@@ -1111,6 +1111,11 @@ get_data(PyObject *archive, PyObject *toc_entry)
}
}
file_offset
+=
l
;
/* Start of file data */
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
;
bytes_size
=
compress
==
0
?
data_size
:
data_size
+
1
;
if
(
bytes_size
==
0
)
if
(
bytes_size
==
0
)
bytes_size
++
;
bytes_size
++
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment