From 323af987ed498d7605a9207bf15f3c32cc972764 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 9 Mar 2023 15:22:28 +0100 Subject: [PATCH] Fixes #5358 (related to #5050) --- lib/core/common.py | 5 +++-- lib/core/settings.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/core/common.py b/lib/core/common.py index e061b511f..c2ab0a0ed 100644 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -5327,6 +5327,7 @@ def parseRequestFile(reqFile, checkParams=True): continue getPostReq = False + forceBody = False url = None host = None method = None @@ -5347,7 +5348,7 @@ def parseRequestFile(reqFile, checkParams=True): line = line.strip('\r') match = re.search(r"\A([A-Z]+) (.+) HTTP/[\d.]+\Z", line) if not method else None - if len(line.strip()) == 0 and method and method != HTTPMETHOD.GET and data is None: + if len(line.strip()) == 0 and method and (method != HTTPMETHOD.GET or forceBody) and data is None: data = "" params = True @@ -5394,7 +5395,7 @@ def parseRequestFile(reqFile, checkParams=True): # headers and consider the following lines as # POSTed data if key.upper() == HTTP_HEADER.CONTENT_LENGTH.upper(): - data = "" + forceBody = True params = True # Avoid proxy and connection type related headers diff --git a/lib/core/settings.py b/lib/core/settings.py index f26a4c524..f555e6d3a 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -20,7 +20,7 @@ from thirdparty import six from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.7.2.22" +VERSION = "1.7.3.0" 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)