mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Fixes #2243
This commit is contained in:
parent
0398cbdc76
commit
d2bbe80455
5 changed files with 14 additions and 8 deletions
2
thirdparty/socks/socks.py
vendored
2
thirdparty/socks/socks.py
vendored
|
|
@ -69,7 +69,7 @@ PROXY_TYPE_HTTP = HTTP = 3
|
|||
PROXY_TYPES = {"SOCKS4": SOCKS4, "SOCKS5": SOCKS5, "HTTP": HTTP}
|
||||
PRINTABLE_PROXY_TYPES = dict(zip(PROXY_TYPES.values(), PROXY_TYPES.keys()))
|
||||
|
||||
_orgsocket = _orig_socket = socket.socket
|
||||
socket._orig_socket = _orgsocket = _orig_socket = socket.socket
|
||||
_orgcreateconnection = socket.create_connection
|
||||
|
||||
class ProxyError(IOError):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue