Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8de2700

Browse files
committed
Fixes #3543
1 parent bf3edcf commit 8de2700

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/core/option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2406,7 +2406,7 @@ def _basicOptionValidation():
24062406
raise SqlmapSyntaxException(errMsg)
24072407

24082408
if conf.chunked and not any((conf.data, conf.requestFile)):
2409-
errMsg = "switch '--chunked' requires usage of option '--data' or '-r'"
2409+
errMsg = "switch '--chunked' requires usage of (POST) options/switches '--data', '-r' or '--forms'"
24102410
raise SqlmapSyntaxException(errMsg)
24112411

24122412
if conf.api and not conf.configFile:

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.3.3.37"
22+
VERSION = "1.3.3.38"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ f89512ef3ebea85611c5dde6c891b657 lib/core/datatype.py
4343
fb6be55d21a70765e35549af2484f762 lib/core/__init__.py
4444
18c896b157b03af716542e5fe9233ef9 lib/core/log.py
4545
2f474c3c7a56f0c3cf3371838e7e5fd4 lib/core/optiondict.py
46-
e9b27d7328a8da0b48a908f0112c7745 lib/core/option.py
46+
2880febde87765f0aeb2e42da3648d75 lib/core/option.py
4747
fe370021c6bc99daf44b2bfc0d1effb3 lib/core/patch.py
4848
4b12aa67fbf6c973d12e54cf9cb54ea0 lib/core/profiling.py
4949
d5ef43fe3cdd6c2602d7db45651f9ceb lib/core/readlineng.py
5050
7d8a22c582ad201f65b73225e4456170 lib/core/replication.py
5151
3179d34f371e0295dd4604568fb30bcd lib/core/revision.py
5252
d6269c55789f78cf707e09a0f5b45443 lib/core/session.py
53-
63db6d32f98705fc0240aaeeff88ef0d lib/core/settings.py
53+
c62a4d131f4a69549b277ab49e712075 lib/core/settings.py
5454
4483b4a5b601d8f1c4281071dff21ecc lib/core/shell.py
5555
10fd19b0716ed261e6d04f311f6f527c lib/core/subprocessng.py
5656
10d7e4f7ba2502cce5cf69223c52eddc lib/core/target.py

0 commit comments

Comments
 (0)