mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
More replacements from open() to codecs.open(). conf.dataEncoding has to be used only for non-binary files.
This commit is contained in:
parent
84778f0e6c
commit
89c721a451
|
@ -1080,8 +1080,10 @@ def decloakToNamedTemporaryFile(filepath, name=None):
|
||||||
def decloakToMkstemp(filepath, **kwargs):
|
def decloakToMkstemp(filepath, **kwargs):
|
||||||
name = mkstemp(**kwargs)[1]
|
name = mkstemp(**kwargs)[1]
|
||||||
retVal = open(name, 'w+b')
|
retVal = open(name, 'w+b')
|
||||||
|
|
||||||
retVal.write(decloak(filepath))
|
retVal.write(decloak(filepath))
|
||||||
retVal.seek(0)
|
retVal.seek(0)
|
||||||
|
|
||||||
return retVal
|
return retVal
|
||||||
|
|
||||||
def isWindowsPath(filepath):
|
def isWindowsPath(filepath):
|
||||||
|
@ -1143,7 +1145,7 @@ def profile(profileOutputFile=None, dotOutputFile=None, imageOutputFile=None):
|
||||||
|
|
||||||
# Create dot file by using extra/gprof2dot/gprof2dot.py
|
# Create dot file by using extra/gprof2dot/gprof2dot.py
|
||||||
# http://code.google.com/p/jrfonseca/wiki/Gprof2Dot
|
# http://code.google.com/p/jrfonseca/wiki/Gprof2Dot
|
||||||
dotFilePointer = open(dotOutputFile, 'wt')
|
dotFilePointer = codecs.open(dotOutputFile, 'wt', conf.dataEncoding)
|
||||||
parser = gprof2dot.PstatsParser(profileOutputFile)
|
parser = gprof2dot.PstatsParser(profileOutputFile)
|
||||||
profile = parser.parse()
|
profile = parser.parse()
|
||||||
profile.prune(0.5/100.0, 0.1/100.0)
|
profile.prune(0.5/100.0, 0.1/100.0)
|
||||||
|
@ -1194,7 +1196,7 @@ def getConsoleWidth(default=80):
|
||||||
return width if width else default
|
return width if width else default
|
||||||
|
|
||||||
def parseXmlFile(xmlFile, handler):
|
def parseXmlFile(xmlFile, handler):
|
||||||
xfile = open(xmlFile)
|
xfile = codecs.open(xmlFile, 'rb', conf.dataEncoding)
|
||||||
content = xfile.read()
|
content = xfile.read()
|
||||||
stream = StringIO(content)
|
stream = StringIO(content)
|
||||||
parse(stream, handler)
|
parse(stream, handler)
|
||||||
|
@ -1209,7 +1211,7 @@ def initCommonOutputs():
|
||||||
key = None
|
key = None
|
||||||
|
|
||||||
fileName = os.path.join(paths.SQLMAP_TXT_PATH, 'common-outputs.txt')
|
fileName = os.path.join(paths.SQLMAP_TXT_PATH, 'common-outputs.txt')
|
||||||
cfile = open(fileName, 'r')
|
cfile = codecs.open(fileName, 'r', conf.dataEncoding)
|
||||||
|
|
||||||
for line in cfile.xreadlines():
|
for line in cfile.xreadlines():
|
||||||
line = line.strip()
|
line = line.strip()
|
||||||
|
|
|
@ -96,7 +96,7 @@ def __urllib2Opener():
|
||||||
urllib2.install_opener(opener)
|
urllib2.install_opener(opener)
|
||||||
|
|
||||||
def __feedTargetsDict(reqFile, addedTargetUrls):
|
def __feedTargetsDict(reqFile, addedTargetUrls):
|
||||||
fp = codecs.open(reqFile, "rb", conf.dataEncoding)
|
fp = codecs.open(reqFile, "rb")
|
||||||
|
|
||||||
fread = fp.read()
|
fread = fp.read()
|
||||||
fread = fread.replace("\r", "")
|
fread = fread.replace("\r", "")
|
||||||
|
@ -745,7 +745,7 @@ def __setHTTPUserAgent():
|
||||||
logger.debug(debugMsg)
|
logger.debug(debugMsg)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
fd = open(conf.userAgentsFile, "r")
|
fd = codecs.open(conf.userAgentsFile, "r", conf.dataEncoding)
|
||||||
except IOError:
|
except IOError:
|
||||||
warnMsg = "unable to read HTTP User-Agent header "
|
warnMsg = "unable to read HTTP User-Agent header "
|
||||||
warnMsg += "file '%s'" % conf.userAgentsFile
|
warnMsg += "file '%s'" % conf.userAgentsFile
|
||||||
|
|
|
@ -22,6 +22,7 @@ with sqlmap; if not, write to the Free Software Foundation, Inc., 51
|
||||||
Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import codecs
|
||||||
import difflib
|
import difflib
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
@ -145,7 +146,7 @@ def __updateMSSQLXML():
|
||||||
servicepackElement.appendChild(servicepackText)
|
servicepackElement.appendChild(servicepackText)
|
||||||
|
|
||||||
# Get the XML old file content to a local variable
|
# Get the XML old file content to a local variable
|
||||||
mssqlXml = open(paths.MSSQL_XML, "r")
|
mssqlXml = codecs.open(paths.MSSQL_XML, "r", conf.dataEncoding)
|
||||||
oldMssqlXml = mssqlXml.read()
|
oldMssqlXml = mssqlXml.read()
|
||||||
oldMssqlXmlSignatures = oldMssqlXml.count("<signature>")
|
oldMssqlXmlSignatures = oldMssqlXml.count("<signature>")
|
||||||
oldMssqlXmlList = oldMssqlXml.splitlines(1)
|
oldMssqlXmlList = oldMssqlXml.splitlines(1)
|
||||||
|
@ -155,12 +156,12 @@ def __updateMSSQLXML():
|
||||||
shutil.copy(paths.MSSQL_XML, "%s.bak" % paths.MSSQL_XML)
|
shutil.copy(paths.MSSQL_XML, "%s.bak" % paths.MSSQL_XML)
|
||||||
|
|
||||||
# Save our newly created XML to the signatures file
|
# Save our newly created XML to the signatures file
|
||||||
mssqlXml = open(paths.MSSQL_XML, "w")
|
mssqlXml = codecs.open(paths.MSSQL_XML, "w", conf.dataEncoding)
|
||||||
doc.writexml(writer=mssqlXml, addindent=" ", newl="\n")
|
doc.writexml(writer=mssqlXml, addindent=" ", newl="\n")
|
||||||
mssqlXml.close()
|
mssqlXml.close()
|
||||||
|
|
||||||
# Get the XML new file content to a local variable
|
# Get the XML new file content to a local variable
|
||||||
mssqlXml = open(paths.MSSQL_XML, "r")
|
mssqlXml = codecs.open(paths.MSSQL_XML, "r", conf.dataEncoding)
|
||||||
newMssqlXml = mssqlXml.read()
|
newMssqlXml = mssqlXml.read()
|
||||||
newMssqlXmlSignatures = newMssqlXml.count("<signature>")
|
newMssqlXmlSignatures = newMssqlXml.count("<signature>")
|
||||||
newMssqlXmlList = newMssqlXml.splitlines(1)
|
newMssqlXmlList = newMssqlXml.splitlines(1)
|
||||||
|
|
|
@ -22,6 +22,7 @@ with sqlmap; if not, write to the Free Software Foundation, Inc., 51
|
||||||
Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import codecs
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
import stat
|
import stat
|
||||||
|
@ -357,7 +358,7 @@ class Metasploit:
|
||||||
|
|
||||||
self.__resource += "exploit\n"
|
self.__resource += "exploit\n"
|
||||||
|
|
||||||
self.resourceFp = open(self.resourceFile, "w")
|
self.resourceFp = codecs.open(self.resourceFile, "w", conf.dataEncoding)
|
||||||
self.resourceFp.write(self.__resource)
|
self.resourceFp.write(self.__resource)
|
||||||
self.resourceFp.close()
|
self.resourceFp.close()
|
||||||
|
|
||||||
|
@ -546,7 +547,7 @@ class Metasploit:
|
||||||
errMsg = "failed to create the shellcode (%s)" % payloadStderr.replace("\n", "")
|
errMsg = "failed to create the shellcode (%s)" % payloadStderr.replace("\n", "")
|
||||||
raise sqlmapFilePathException, errMsg
|
raise sqlmapFilePathException, errMsg
|
||||||
|
|
||||||
self.__shellcodeFP = open(self.__shellcodeFilePath, "rb")
|
self.__shellcodeFP = codecs.open(self.__shellcodeFilePath, "rb", conf.dataEncoding)
|
||||||
self.shellcodeString = self.__shellcodeFP.read()
|
self.shellcodeString = self.__shellcodeFP.read()
|
||||||
self.__shellcodeFP.close()
|
self.__shellcodeFP.close()
|
||||||
|
|
||||||
|
|
|
@ -21,10 +21,15 @@ You should have received a copy of the GNU General Public License along
|
||||||
with sqlmap; if not, write to the Free Software Foundation, Inc., 51
|
with sqlmap; if not, write to the Free Software Foundation, Inc., 51
|
||||||
Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
"""
|
"""
|
||||||
import re, sre_constants
|
|
||||||
|
import codecs
|
||||||
|
import re
|
||||||
|
import sre_constants
|
||||||
|
|
||||||
from xml.dom import minidom
|
from xml.dom import minidom
|
||||||
|
|
||||||
from lib.core.common import getCompiledRegex
|
from lib.core.common import getCompiledRegex
|
||||||
|
from lib.core.data import conf
|
||||||
from lib.core.data import paths
|
from lib.core.data import paths
|
||||||
from lib.core.data import logger
|
from lib.core.data import logger
|
||||||
|
|
||||||
|
@ -36,28 +41,33 @@ def __adjustGrammar(string):
|
||||||
string = re.sub('attempts\Z', 'attempt', string)
|
string = re.sub('attempts\Z', 'attempt', string)
|
||||||
string = re.sub('injections\Z', 'injection', string)
|
string = re.sub('injections\Z', 'injection', string)
|
||||||
string = re.sub('attacks\Z', 'attack', string)
|
string = re.sub('attacks\Z', 'attack', string)
|
||||||
|
|
||||||
return string
|
return string
|
||||||
|
|
||||||
def checkPayload(string):
|
def checkPayload(string):
|
||||||
"""
|
"""
|
||||||
This method checks if the generated payload is detectable by the PHPIDS filter rules
|
This method checks if the generated payload is detectable by the
|
||||||
|
PHPIDS filter rules
|
||||||
"""
|
"""
|
||||||
|
|
||||||
global rules
|
global rules
|
||||||
|
|
||||||
if not rules:
|
if not rules:
|
||||||
file = open(paths.DETECTION_RULES_XML, 'r')
|
xfile = codecs.open(paths.DETECTION_RULES_XML, 'r', conf.dataEncoding)
|
||||||
xmlrules = minidom.parse(file).documentElement
|
xmlrules = minidom.parse(xfile).documentElement
|
||||||
file.close()
|
xfile.close()
|
||||||
rules = []
|
rules = []
|
||||||
|
|
||||||
for xmlrule in xmlrules.getElementsByTagName("filter"):
|
for xmlrule in xmlrules.getElementsByTagName("filter"):
|
||||||
try:
|
try:
|
||||||
rule = "(?i)%s" % xmlrule.getElementsByTagName('rule')[0].childNodes[0].nodeValue
|
rule = "(?i)%s" % xmlrule.getElementsByTagName('rule')[0].childNodes[0].nodeValue
|
||||||
desc = __adjustGrammar(xmlrule.getElementsByTagName('description')[0].childNodes[0].nodeValue)
|
desc = __adjustGrammar(xmlrule.getElementsByTagName('description')[0].childNodes[0].nodeValue)
|
||||||
rules.append((rule, desc))
|
rules.append((rule, desc))
|
||||||
except sre_constants.error: #some issues with some regex expressions in Python 2.5
|
except sre_constants.error: # Some issues with some regex expressions in Python 2.5
|
||||||
pass
|
pass
|
||||||
|
|
||||||
for rule, desc in rules:
|
for rule, desc in rules:
|
||||||
regObj = getCompiledRegex(rule)
|
regObj = getCompiledRegex(rule)
|
||||||
|
|
||||||
if regObj.search(string):
|
if regObj.search(string):
|
||||||
logger.warn("highly probable IDS/IPS detection: '%s'" % desc)
|
logger.warn("highly probable IDS/IPS detection: '%s'" % desc)
|
||||||
|
|
|
@ -22,6 +22,7 @@ with sqlmap; if not, write to the Free Software Foundation, Inc., 51
|
||||||
Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import codecs
|
||||||
import ntpath
|
import ntpath
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
@ -150,7 +151,7 @@ class Filesystem(GenericFilesystem):
|
||||||
dFile = posixToNtSlashes(dFile)
|
dFile = posixToNtSlashes(dFile)
|
||||||
dFileName = ntpath.basename(dFile)
|
dFileName = ntpath.basename(dFile)
|
||||||
wFileSize = os.path.getsize(wFile)
|
wFileSize = os.path.getsize(wFile)
|
||||||
wFilePointer = open(wFile, "rb")
|
wFilePointer = codecs.open(wFile, "rb")
|
||||||
wFileContent = wFilePointer.read()
|
wFileContent = wFilePointer.read()
|
||||||
wFilePointer.close()
|
wFilePointer.close()
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,7 @@ Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import binascii
|
import binascii
|
||||||
|
import codecs
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from lib.core.agent import agent
|
from lib.core.agent import agent
|
||||||
|
@ -163,8 +164,8 @@ class Filesystem:
|
||||||
"""
|
"""
|
||||||
|
|
||||||
fcEncodedList = []
|
fcEncodedList = []
|
||||||
fp = open(fileName, "rb")
|
fp = codecs.open(fileName, "rb")
|
||||||
fcEncodedStr = fp.read().encode(encoding).replace("\n", "")
|
fcEncodedStr = fp.read().encode(encoding).replace("\n", "")
|
||||||
|
|
||||||
if not single:
|
if not single:
|
||||||
fcLength = len(fcEncodedStr)
|
fcLength = len(fcEncodedStr)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user