summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiro Hrončok <miro@hroncok.cz>2017-12-08 21:34:12 (GMT)
committerlarryhastings <larry@hastings.org>2017-12-08 21:34:12 (GMT)
commitfd8614c5c5466a14a945db5b059c10c0fb8f76d9 (patch)
tree29521b03455c9be97055427be9a1b33cc279a99d /Misc
parentdcb101e7f078f12fc3d2bf1730410798a880bfe3 (diff)
downloadcpython-fd8614c5c5466a14a945db5b059c10c0fb8f76d9.zip
cpython-fd8614c5c5466a14a945db5b059c10c0fb8f76d9.tar.gz
cpython-fd8614c5c5466a14a945db5b059c10c0fb8f76d9.tar.bz2
bpo-30657: Fix CVE-2017-1000158 (#4664)
Fixes possible integer overflow in PyBytes_DecodeEscape. Co-Authored-By: Jay Bosamiya <jaybosamiya@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS2
-rw-r--r--Misc/NEWS.d/next/Security/2017-12-01-18-51-03.bpo-30657.Fd8kId.rst2
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index fbf110d..1a35aad 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -167,6 +167,7 @@ Médéric Boquien
Matias Bordese
Jonas Borgström
Jurjen Bos
+Jay Bosamiya
Peter Bosch
Dan Boswell
Eric Bouck
@@ -651,6 +652,7 @@ Ken Howard
Brad Howes
Mike Hoy
Ben Hoyt
+Miro Hrončok
Chiu-Hsiang Hsu
Chih-Hao Huang
Christian Hudon
diff --git a/Misc/NEWS.d/next/Security/2017-12-01-18-51-03.bpo-30657.Fd8kId.rst b/Misc/NEWS.d/next/Security/2017-12-01-18-51-03.bpo-30657.Fd8kId.rst
new file mode 100644
index 0000000..75359b6
--- /dev/null
+++ b/Misc/NEWS.d/next/Security/2017-12-01-18-51-03.bpo-30657.Fd8kId.rst
@@ -0,0 +1,2 @@
+Fixed possible integer overflow in PyBytes_DecodeEscape, CVE-2017-1000158.
+Original patch by Jay Bosamiya; rebased to Python 3 by Miro Hrončok.