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

Skip to content

Commit 881d767

Browse files
committed
Fixes #4181
1 parent 1156b53 commit 881d767

2 files changed

Lines changed: 6 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.4.4.10"
21+
VERSION = "1.4.4.11"
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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
from lib.core.common import decloakToTemp
1313
from lib.core.common import flattenValue
1414
from lib.core.common import isListLike
15+
from lib.core.common import isNoneValue
1516
from lib.core.common import isStackingAvailable
1617
from lib.core.common import randomStr
1718
from 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)

0 commit comments

Comments
 (0)