diff --git a/lib/core/settings.py b/lib/core/settings.py index 330122366..0b2972e48 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -18,7 +18,7 @@ from lib.core.enums import OS from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.3.5.134" +VERSION = "1.3.5.135" TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE) diff --git a/lib/request/connect.py b/lib/request/connect.py index ce2ec3af4..fe0110285 100644 --- a/lib/request/connect.py +++ b/lib/request/connect.py @@ -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")