From 4f3094d8a540df4f6d0dc9476e608037037647f7 Mon Sep 17 00:00:00 2001 From: dylan171 Date: Thu, 12 May 2016 09:56:39 -0400 Subject: [PATCH] Update Obsolete SSL Protocol Use of ssl.PROTOCOL_SSLv3 is highly discouraged and is now removed from Python 2.7 in Debian 8 due to security concerns. Recommended to update to ssl.PROTOCOL_SSLv23. See Python documentation: https://docs.python.org/2/library/ssl.html#ssl.PROTOCOL_SSLv3 --- channelfinder/ChannelFinderClient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channelfinder/ChannelFinderClient.py b/channelfinder/ChannelFinderClient.py index 88adfdd..92adcf6 100644 --- a/channelfinder/ChannelFinderClient.py +++ b/channelfinder/ChannelFinderClient.py @@ -614,6 +614,6 @@ def init_poolmanager(self, connections, maxsize, block=False): self.poolmanager = PoolManager(num_pools=connections, maxsize=maxsize, block=block, - ssl_version=ssl.PROTOCOL_SSLv3) + ssl_version=ssl.PROTOCOL_SSLv23)