[issue12835] Missing SSLSocket.sendmsg() wrapper allows programs to send unencrypted data by mistake

2011-08-27 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset b06f011a3529 by Nick Coghlan in branch 'default': Fix #12835: prevent use of the unencrypted sendmsg/recvmsg APIs on SSL wrapped sockets (Patch by David Watson) http://hg.python.org/cpython/rev/b06f011a3529

[issue12835] Missing SSLSocket.sendmsg() wrapper allows programs to send unencrypted data by mistake

2011-08-27 Thread Nick Coghlan
Changes by Nick Coghlan ncogh...@gmail.com: -- resolution: - fixed stage: - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12835 ___

[issue12835] Missing SSLSocket.sendmsg() wrapper allows programs to send unencrypted data by mistake

2011-08-25 Thread Charles-François Natali
Changes by Charles-François Natali neolo...@free.fr: -- nosy: +ncoghlan, pitrou priority: normal - high type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12835 ___

[issue12835] Missing SSLSocket.sendmsg() wrapper allows programs to send unencrypted data by mistake

2011-08-25 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Adding an explanation message to the NotImplementedError would be more helpful. Otherwise, good catch. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12835

[issue12835] Missing SSLSocket.sendmsg() wrapper allows programs to send unencrypted data by mistake

2011-08-25 Thread David Watson
David Watson bai...@users.sourceforge.net added the comment: On Thu 25 Aug 2011, Antoine Pitrou wrote: Adding an explanation message to the NotImplementedError would be more helpful. Otherwise, good catch. OK, I've copied the messages from the ValueErrors the other methods raise. --

[issue12835] Missing SSLSocket.sendmsg() wrapper allows programs to send unencrypted data by mistake

2011-08-25 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- assignee: - ncoghlan type: behavior - security ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12835 ___

[issue12835] Missing SSLSocket.sendmsg() wrapper allows programs to send unencrypted data by mistake

2011-08-25 Thread Nick Coghlan
Nick Coghlan ncogh...@gmail.com added the comment: As Antoine said, good catch. I'll be able to incorporate this in the next couple of days. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12835

[issue12835] Missing SSLSocket.sendmsg() wrapper allows programs to send unencrypted data by mistake

2011-08-24 Thread David Watson
New submission from David Watson bai...@users.sourceforge.net: Changeset fd10d042b41d removed the wrappers on ssl.SSLSocket for the new socket.send/recvmsg() methods (since I forgot to check for the existence of the underlying methods - see issue #6560), but this leaves SSLSocket with