File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1919from 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 "
2323TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2424TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2525VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
You can’t perform that action at this time.
0 commit comments