mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Update httpshandler.py
ssl.PROTOCOL_SSLv3 removed affecting error: AttributeError: 'module' object has no attribute 'PROTOCOL_SSLv3'
This commit is contained in:
parent
80b9fc4821
commit
4da20679ee
|
@ -19,7 +19,7 @@ try:
|
|||
except ImportError:
|
||||
pass
|
||||
|
||||
_protocols = [ssl.PROTOCOL_SSLv3, ssl.PROTOCOL_TLSv1, ssl.PROTOCOL_SSLv23]
|
||||
_protocols = [ssl.PROTOCOL_TLSv1, ssl.PROTOCOL_SSLv23]
|
||||
|
||||
class HTTPSConnection(httplib.HTTPSConnection):
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue
Block a user