mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Support for timeout param when using Websockets
A fix for the timeout parameter being ignored when using Web-sockets.
This commit is contained in:
parent
5c80e988ba
commit
a6cbbc5ea9
|
@ -396,6 +396,7 @@ class Connect(object):
|
||||||
|
|
||||||
if websocket_:
|
if websocket_:
|
||||||
ws = websocket.WebSocket()
|
ws = websocket.WebSocket()
|
||||||
|
ws.settimeout(timeout)
|
||||||
ws.connect(url, header=("%s: %s" % _ for _ in headers.items() if _[0] not in ("Host",)), cookie=cookie) # WebSocket will add Host field of headers automatically
|
ws.connect(url, header=("%s: %s" % _ for _ in headers.items() if _[0] not in ("Host",)), cookie=cookie) # WebSocket will add Host field of headers automatically
|
||||||
ws.send(urldecode(post or ""))
|
ws.send(urldecode(post or ""))
|
||||||
page = ws.recv()
|
page = ws.recv()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user