Note: this code works fine on Ubuntu but not on mac and instead of changing the mac/python settings locally I'm trying to make change to the code so it'll work everywhere..
import ssl
import httplib
httplib.HTTPConnection(server, port, timeout)
but it throws error:
[Errno 1] _ssl.c:503: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol
now code's not using urllib.request instead using httplib
I want to change the code so it'll take SSLv3 as default protocol, something like this:
ssl.SSLContext(ssl.PROTOCOL_SSLv3)
I looked around and found few links but nothing is working!
Note: The HTTPSConnection constructor allows to pass an ssl
context
as argument since python 2.7.9, which should be used in this case.This answer predates that change and therefore only applies to outdated versions of python.
httplib.HTTPSConnection.connect
just callsssl.wrap_socket
on the opened socket to initalize a https connection, unfortunately you can't specify any parameters in python2.7 (python3 allows passing theSSLContext
).If you want to specify the protocol version, you'd need to monkey patch one of these two:
Method 1: patch
httplib.HTTPSConnection.connect
:This changes the protocol version for all connections made with
HTTPSConnection
.Method 2: patch
ssl.wrap_socket
:This changes the default protocol version for all code that uses
wrap_socket
, therefore also affects other libraries.edit:
Method 3: because httplib actually accesses only
wrap_socket
fromssl
, you could also just replacehttplib.ssl
with a class providingwrap_socket
. Usingfunctools.partial
makes it very elegant to write this: