diff options
author | Dong-hee Na <donghee.na92@gmail.com> | 2017-07-26 07:04:42 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2017-07-26 07:04:42 (GMT) |
commit | 19b2890014d3098147d16475c492a47a43893768 (patch) | |
tree | 4c16d5fe794e062575e9b1a324a2ec960cd313ce /Misc/NEWS.d/next | |
parent | 49175b3b670a4514b5dc5dcf7b58203d2be852c1 (diff) | |
download | cpython-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.rst | 2 |
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. |