mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Handle unknown WebSocket status codes
This commit is contained in:
parent
c07b15666c
commit
36c55a33fb
3 changed files with 4 additions and 4 deletions
|
|
@ -540,7 +540,7 @@ class Connect(object):
|
|||
|
||||
ws.close()
|
||||
code = ws.status
|
||||
status = _http_client.responses[code]
|
||||
status = _http_client.responses.get(code, "")
|
||||
|
||||
class _(dict):
|
||||
pass
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue