Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ceaf387

Browse files
committed
Fixes #3912
1 parent e5a1377 commit ceaf387

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from 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"
2222
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2323
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2424
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

plugins/dbms/postgresql/takeover.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
from lib.core.common import Backend
1111
from lib.core.common import checkFile
1212
from lib.core.common import decloakToTemp
13+
from lib.core.common import flattenValue
1314
from lib.core.common import isListLike
1415
from lib.core.common import isStackingAvailable
1516
from 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)

0 commit comments

Comments
 (0)