Differences between revisions 2 and 3
Revision 2 as of 2010-11-09 14:59:29
Size: 748
Editor: techtonik
Comment: + information about limitation across Python versions
Revision 3 as of 2010-11-09 18:24:01
Size: 1227
Editor: techtonik
Comment: explain how to eavesdrop Python 2.x ssl connections
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
SSL support is available from http://pypi.python.org/pypi/ssl Unfortunately, no binaries are available for Windows, and that's a major showstopper when using Python 2.5. SSL support is available from http://pypi.python.org/pypi/ssl Unfortunately, there are no binaries for Windows, and that's a major showstopper when using Python 2.5.
Line 8: Line 8:
SSL module from http://pypi.python.org/pypi/ssl is bundled with installer. But it has some bugs (unfortunately, Python bug tracker doesn't allow to query these reliably) SSL module from http://pypi.python.org/pypi/ssl is bundled with installer. It has a serious security issue that allows successful MITM attack using valid certificate from an other site - http://bugs.python.org/issue1589 Basically, the module validates that certificate is correct and correctly signed by root certificate, but it does not check that it actually belong to the connected site, i.e. that site name match the one specified in certificate.
Line 10: Line 10:
=== Validating server certificate === === Validating server identity ===
Client need to connect to server over SSL, fetch its certificate and check that the certificate indeed belongs to this server (server name).

{{{

}}}

=== Get updated list of root certificates ==

SSL stands for Secure Sockets Layer and is designed to create secure connection between client and server. Secure means that connection is encrypted and therefore protected from eavesdropping. It also allows to validate server identity.

SSL libraries availability and limitations

  • Python 2.5 (the version AppEngine is running)

SSL support is available from http://pypi.python.org/pypi/ssl Unfortunately, there are no binaries for Windows, and that's a major showstopper when using Python 2.5.

  • Python 2.6

SSL module from http://pypi.python.org/pypi/ssl is bundled with installer. It has a serious security issue that allows successful MITM attack using valid certificate from an other site - http://bugs.python.org/issue1589 Basically, the module validates that certificate is correct and correctly signed by root certificate, but it does not check that it actually belong to the connected site, i.e. that site name match the one specified in certificate.

Validating server identity

Client need to connect to server over SSL, fetch its certificate and check that the certificate indeed belongs to this server (server name).

=== Get updated list of root certificates ==

SSL (last edited 2010-11-21 08:55:53 by techtonik)

Unable to edit the page? See the FrontPage for instructions.