mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
Fix related to the SSLv3 disabling
This commit is contained in:
@@ -53,7 +53,7 @@ class HTTPSConnection(httplib.HTTPSConnection):
|
|||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
sock.close()
|
sock.close()
|
||||||
except ssl.SSLError, errMsg:
|
except (ssl.SSLError, socket.error), errMsg:
|
||||||
logger.debug("SSL connection error occurred ('%s')" % errMsg)
|
logger.debug("SSL connection error occurred ('%s')" % errMsg)
|
||||||
|
|
||||||
if not success:
|
if not success:
|
||||||
|
|||||||
Reference in New Issue
Block a user