Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcb8025 commit 9958d77Copy full SHA for 9958d77
2 files changed
lib/core/settings.py
@@ -17,7 +17,7 @@
17
from lib.core.enums import OS
18
19
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
20
-VERSION = "1.3.4.10"
+VERSION = "1.3.4.11"
21
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
22
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
23
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
lib/request/connect.py
@@ -278,7 +278,10 @@ def getPage(**kwargs):
278
if multipart:
279
post = multipart
280
281
- if chunked and post:
+ if not post:
282
+ chunked = False
283
+
284
+ elif chunked:
285
post = _urllib.parse.unquote(post)
286
post = chunkSplitPostData(post)
287
0 commit comments