File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818from thirdparty .six import unichr as _unichr
1919
2020# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21- VERSION = "1.4.4.10 "
21+ VERSION = "1.4.4.11 "
2222TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2323TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2424VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff line change 1212from lib .core .common import decloakToTemp
1313from lib .core .common import flattenValue
1414from lib .core .common import isListLike
15+ from lib .core .common import isNoneValue
1516from lib .core .common import isStackingAvailable
1617from lib .core .common import randomStr
1718from lib .core .data import kb
@@ -105,7 +106,10 @@ def copyExecCmd(self, cmd):
105106 output = inject .getValue (query , resumeValue = False )
106107
107108 if isListLike (output ):
108- output = os .linesep .join (flattenValue (output ))
109+ output = flattenValue (output )
110+
111+ if not isNoneValue (output ):
112+ output = os .linesep .join (output )
109113
110114 self ._cleanupCmd = "DROP TABLE %s" % self .cmdTblName
111115 inject .goStacked (self ._cleanupCmd )
You can’t perform that action at this time.
0 commit comments