mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-30 04:55:04 +00:00
Fixes #3912
This commit is contained in:
parent
e5a1377c36
commit
ceaf387533
2 changed files with 3 additions and 2 deletions
|
|
@ -10,6 +10,7 @@ import os
|
|||
from lib.core.common import Backend
|
||||
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 isStackingAvailable
|
||||
from lib.core.common import randomStr
|
||||
|
|
@ -104,7 +105,7 @@ class Takeover(GenericTakeover):
|
|||
output = inject.getValue(query, resumeValue=False)
|
||||
|
||||
if isListLike(output):
|
||||
output = os.linesep.join(output)
|
||||
output = os.linesep.join(flattenValue(output))
|
||||
|
||||
self._cleanupCmd = "DROP TABLE %s" % self.cmdTblName
|
||||
inject.goStacked(self._cleanupCmd)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue