From e869728972c75905b505833d224c43fc149f4a2f Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 24 May 2019 15:01:43 +0200 Subject: [PATCH] Fixes #3698 --- lib/core/settings.py | 2 +- lib/request/connect.py | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) 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")