mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +03:00
Fix for an Issue #220
This commit is contained in:
parent
b7429dc6bb
commit
c2058dfc8f
|
@ -14,6 +14,7 @@ from lib.core.common import normalizePath
|
|||
from lib.core.common import ntToPosixSlashes
|
||||
from lib.core.common import posixToNtSlashes
|
||||
from lib.core.common import readInput
|
||||
from lib.core.common import unArrayizeValue
|
||||
from lib.core.data import conf
|
||||
from lib.core.data import kb
|
||||
from lib.core.data import logger
|
||||
|
@ -85,7 +86,7 @@ class Miscellaneous:
|
|||
if conf.direct:
|
||||
query = "SELECT %s" % query
|
||||
|
||||
kb.bannerFp["dbmsVersion"] = inject.getValue(query)
|
||||
kb.bannerFp["dbmsVersion"] = unArrayizeValue(inject.getValue(query))
|
||||
kb.bannerFp["dbmsVersion"] = (kb.bannerFp["dbmsVersion"] or "").replace(",", "").replace("-", "").replace(" ", "")
|
||||
|
||||
def delRemoteFile(self, filename):
|
||||
|
|
Loading…
Reference in New Issue
Block a user