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.3.9.3 "
21+ VERSION = "1.3.9.4 "
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 1010from lib .core .common import Backend
1111from lib .core .common import checkFile
1212from lib .core .common import decloakToTemp
13+ from lib .core .common import flattenValue
1314from lib .core .common import isListLike
1415from lib .core .common import isStackingAvailable
1516from lib .core .common import randomStr
@@ -104,7 +105,7 @@ def copyExecCmd(self, cmd):
104105 output = inject .getValue (query , resumeValue = False )
105106
106107 if isListLike (output ):
107- output = os .linesep .join (output )
108+ output = os .linesep .join (flattenValue ( output ) )
108109
109110 self ._cleanupCmd = "DROP TABLE %s" % self .cmdTblName
110111 inject .goStacked (self ._cleanupCmd )
You can’t perform that action at this time.
0 commit comments