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

Skip to content

Commit 9dcd18e

Browse files
committed
Fixes #3546
1 parent 2d129f3 commit 9dcd18e

2 files changed

Lines changed: 2 additions & 2 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
errMsg = "switch '--dump' is incompatible with switch '--search'"
24072407
raise SqlmapSyntaxException(errMsg)
24082408

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

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.44"
22+
VERSION = "1.3.3.45"
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)

0 commit comments

Comments
 (0)