File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3746,7 +3746,8 @@ def initTechnique(technique=None):
37463746 if data :
37473747 kb .pageTemplate , kb .errorIsNone = getPageTemplate (data .templatePayload , kb .injection .place )
37483748 kb .matchRatio = data .matchRatio
3749- kb .trueLength = data .trueLength
3749+ kb .trueLength = data .get ("trueLength" ) # NOTE: absent in sessions stored before the '--lengths' switch was introduced
3750+
37503751 kb .negativeLogic = (technique == PAYLOAD .TECHNIQUE .BOOLEAN ) and (data .where == PAYLOAD .WHERE .NEGATIVE )
37513752
37523753 # Restoring stored conf options
Original file line number Diff line number Diff line change 2020from thirdparty import six
2121
2222# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23- VERSION = "1.10.7.94 "
23+ VERSION = "1.10.7.95 "
2424TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2525TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2626VERSION_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