summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-09-30 14:00:09 (GMT)
committerGeorg Brandl <georg@python.org>2014-09-30 14:00:09 (GMT)
commitfd9262cf2a044f6909530cdb565f38e13ff98263 (patch)
treeb8224d9c5325d802b7b1506121c4c7bcce1718b2 /Lib/test
parent0840b415829f7fab8db48e1b38bbbfc7da2df8c0 (diff)
downloadcpython-fd9262cf2a044f6909530cdb565f38e13ff98263.zip
cpython-fd9262cf2a044f6909530cdb565f38e13ff98263.tar.gz
cpython-fd9262cf2a044f6909530cdb565f38e13ff98263.tar.bz2
Issue #16039: CVE-2013-1752: Change use of readline in imaplib module to limit
line length. Patch by Emil Lind.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_imaplib.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/Lib/test/test_imaplib.py b/Lib/test/test_imaplib.py
index 6b29943..62feea7 100644
--- a/Lib/test/test_imaplib.py
+++ b/Lib/test/test_imaplib.py
@@ -309,6 +309,17 @@ class BaseThreadedNetworkedTests(unittest.TestCase):
self.assertEqual(ret, "OK")
+ def test_linetoolong(self):
+ class TooLongHandler(SimpleIMAPHandler):
+ def handle(self):
+ # Send a very long response line
+ self.wfile.write(b'* OK ' + imaplib._MAXLINE*b'x' + b'\r\n')
+
+ with self.reaped_server(TooLongHandler) as server:
+ self.assertRaises(imaplib.IMAP4.error,
+ self.imap_class, *server.server_address)
+
+
class ThreadedNetworkedTests(BaseThreadedNetworkedTests):
server_class = socketserver.TCPServer