mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-23 15:54:24 +03:00
Fix related to the SSLv3 disabling
This commit is contained in:
parent
d3c6cf1932
commit
41c2f889b2
|
@ -53,7 +53,7 @@ class HTTPSConnection(httplib.HTTPSConnection):
|
|||
break
|
||||
else:
|
||||
sock.close()
|
||||
except ssl.SSLError, errMsg:
|
||||
except (ssl.SSLError, socket.error), errMsg:
|
||||
logger.debug("SSL connection error occurred ('%s')" % errMsg)
|
||||
|
||||
if not success:
|
||||
|
|
Loading…
Reference in New Issue
Block a user