summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2017-07-26 07:04:42 (GMT)
committerNed Deily <nad@python.org>2017-07-26 07:04:42 (GMT)
commit19b2890014d3098147d16475c492a47a43893768 (patch)
tree4c16d5fe794e062575e9b1a324a2ec960cd313ce /Misc/NEWS.d/next
parent49175b3b670a4514b5dc5dcf7b58203d2be852c1 (diff)
downloadcpython-19b2890014d3098147d16475c492a47a43893768.zip
cpython-19b2890014d3098147d16475c492a47a43893768.tar.gz
cpython-19b2890014d3098147d16475c492a47a43893768.tar.bz2
[3.5] [security] bpo-30119: fix ftplib.FTP.putline() to throw an error for a illegal command (#1214) (#2887)
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Library/2017-07-26-15-11-17.bpo-30119.DZ6C_S.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-07-26-15-11-17.bpo-30119.DZ6C_S.rst b/Misc/NEWS.d/next/Library/2017-07-26-15-11-17.bpo-30119.DZ6C_S.rst
new file mode 100644
index 0000000..a37d370
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-07-26-15-11-17.bpo-30119.DZ6C_S.rst
@@ -0,0 +1,2 @@
+ftplib.FTP.putline() now throws ValueError on commands that contains CR or
+LF. Patch by Dong-hee Na.