mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Fix (and some hidden bug fixes/improvements) regarding an Issue #317
This commit is contained in:
parent
352e516400
commit
35728fa443
|
@ -737,12 +737,12 @@ def dataToDumpFile(dumpFile, data):
|
|||
dumpFile.flush()
|
||||
|
||||
def dataToOutFile(filename, data):
|
||||
if not data:
|
||||
return "No data retrieved"
|
||||
retVal = None
|
||||
|
||||
if data:
|
||||
retVal = "%s%s%s" % (conf.filePath, os.sep, filePathToString(filename))
|
||||
|
||||
with codecs.open(retVal, "wb") as f:
|
||||
with codecs.open(retVal, "wb", UNICODE_ENCODING) as f:
|
||||
f.write(data)
|
||||
|
||||
return retVal
|
||||
|
@ -3170,19 +3170,20 @@ def decodeHexValue(value):
|
|||
retVal = value
|
||||
|
||||
def _(value):
|
||||
retVal = value
|
||||
if value and isinstance(value, basestring) and len(value) % 2 == 0:
|
||||
value = hexdecode(value)
|
||||
retVal = hexdecode(retVal)
|
||||
|
||||
if Backend.isDbms(DBMS.MSSQL):
|
||||
if Backend.isDbms(DBMS.MSSQL) and value.startswith("0x"):
|
||||
try:
|
||||
value = value.decode("utf-16-le")
|
||||
retVal = retVal.decode("utf-16-le")
|
||||
except UnicodeDecodeError:
|
||||
pass
|
||||
|
||||
if not isinstance(value, unicode):
|
||||
value = getUnicode(value, "utf8")
|
||||
if not isinstance(retVal, unicode):
|
||||
retVal = getUnicode(retVal, "utf8")
|
||||
|
||||
return value
|
||||
return retVal
|
||||
|
||||
try:
|
||||
retVal = applyFunctionRecursively(value, _)
|
||||
|
|
|
@ -531,7 +531,7 @@ class Metasploit:
|
|||
errMsg = "failed to create the shellcode (%s)" % payloadStderr.replace("\n", " ").replace("\r", "")
|
||||
raise SqlmapFilePathException, errMsg
|
||||
|
||||
self._shellcodeFP = codecs.open(self._shellcodeFilePath, "rb")
|
||||
self._shellcodeFP = codecs.open(self._shellcodeFilePath, "rb", UNICODE_ENCODING)
|
||||
self.shellcodeString = self._shellcodeFP.read()
|
||||
self._shellcodeFP.close()
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@ from lib.core.enums import EXPECTED
|
|||
from lib.core.enums import PAYLOAD
|
||||
from lib.core.exception import SqlmapNoneDataException
|
||||
from lib.core.exception import SqlmapUnsupportedFeatureException
|
||||
from lib.core.settings import UNICODE_ENCODING
|
||||
from lib.request import inject
|
||||
|
||||
from plugins.generic.filesystem import Filesystem as GenericFilesystem
|
||||
|
@ -337,7 +338,7 @@ class Filesystem(GenericFilesystem):
|
|||
|
||||
tmpPath = posixToNtSlashes(conf.tmpPath)
|
||||
dFile = posixToNtSlashes(dFile)
|
||||
wFilePointer = codecs.open(wFile, "rb")
|
||||
wFilePointer = codecs.open(wFile, "rb", UNICODE_ENCODING)
|
||||
wFileContent = wFilePointer.read()
|
||||
wFilePointer.close()
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@ from lib.core.enums import CHARSET_TYPE
|
|||
from lib.core.enums import EXPECTED
|
||||
from lib.core.enums import PAYLOAD
|
||||
from lib.core.exception import SqlmapUndefinedMethod
|
||||
from lib.core.settings import UNICODE_ENCODING
|
||||
from lib.request import inject
|
||||
|
||||
class Filesystem:
|
||||
|
@ -112,7 +113,7 @@ class Filesystem:
|
|||
"""
|
||||
|
||||
retVal = []
|
||||
with codecs.open(fileName, "rb") as f:
|
||||
with codecs.open(fileName, "rb", UNICODE_ENCODING) as f:
|
||||
content = f.read().encode(encoding).replace("\n", "")
|
||||
|
||||
if not single:
|
||||
|
@ -230,6 +231,8 @@ class Filesystem:
|
|||
|
||||
if fileContent is not None:
|
||||
fileContent = decodeHexValue(fileContent)
|
||||
|
||||
if fileContent:
|
||||
localFilePath = dataToOutFile(remoteFile, fileContent)
|
||||
|
||||
if not Backend.isDbms(DBMS.PGSQL):
|
||||
|
@ -243,6 +246,9 @@ class Filesystem:
|
|||
localFilePath += " (size differs from remote file)"
|
||||
|
||||
localFilePaths.append(localFilePath)
|
||||
else:
|
||||
errMsg = "no data retrieved"
|
||||
logger.error(errMsg)
|
||||
|
||||
return localFilePaths
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user