mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-15 20:29:04 +00:00
Fixes #3698
This commit is contained in:
@@ -286,13 +286,13 @@ class Connect(object):
|
||||
|
||||
if multipart:
|
||||
post = multipart
|
||||
else:
|
||||
if not post:
|
||||
chunked = False
|
||||
|
||||
if not post:
|
||||
chunked = False
|
||||
|
||||
elif chunked:
|
||||
post = _urllib.parse.unquote(post)
|
||||
post = chunkSplitPostData(post)
|
||||
elif chunked:
|
||||
post = _urllib.parse.unquote(post)
|
||||
post = chunkSplitPostData(post)
|
||||
|
||||
websocket_ = url.lower().startswith("ws")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user