mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Fixes #4181
This commit is contained in:
parent
1156b53eee
commit
881d767df8
2 changed files with 6 additions and 2 deletions
|
|
@ -12,6 +12,7 @@ from lib.core.common import checkFile
|
|||
from lib.core.common import decloakToTemp
|
||||
from lib.core.common import flattenValue
|
||||
from lib.core.common import isListLike
|
||||
from lib.core.common import isNoneValue
|
||||
from lib.core.common import isStackingAvailable
|
||||
from lib.core.common import randomStr
|
||||
from lib.core.data import kb
|
||||
|
|
@ -105,7 +106,10 @@ class Takeover(GenericTakeover):
|
|||
output = inject.getValue(query, resumeValue=False)
|
||||
|
||||
if isListLike(output):
|
||||
output = os.linesep.join(flattenValue(output))
|
||||
output = flattenValue(output)
|
||||
|
||||
if not isNoneValue(output):
|
||||
output = os.linesep.join(output)
|
||||
|
||||
self._cleanupCmd = "DROP TABLE %s" % self.cmdTblName
|
||||
inject.goStacked(self._cleanupCmd)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue