sqlmap/lib/parse/payloads.py

104 lines
3.2 KiB
Python
Raw Normal View History

2019-03-21 16:00:09 +03:00
#!/usr/bin/env python2
"""
2019-01-05 23:38:52 +03:00
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
2017-10-11 15:50:46 +03:00
See the file 'LICENSE' for copying permission
"""
import os
import re
from xml.etree import ElementTree as et
2015-10-23 15:29:48 +03:00
from lib.core.common import getSafeExString
from lib.core.data import conf
from lib.core.data import paths
2011-07-08 10:02:31 +04:00
from lib.core.datatype import AttribDict
2014-11-10 15:41:53 +03:00
from lib.core.exception import SqlmapInstallationException
from lib.core.settings import PAYLOAD_XML_FILES
2010-12-03 13:51:27 +03:00
def cleanupVals(text, tag):
if tag == "clause" and '-' in text:
text = re.sub(r"(\d+)-(\d+)", lambda match: ','.join(str(_) for _ in xrange(int(match.group(1)), int(match.group(2)) + 1)), text)
2010-12-03 13:51:27 +03:00
if tag in ("clause", "where"):
text = text.split(',')
2010-12-03 13:51:27 +03:00
if isinstance(text, basestring):
2015-12-23 10:55:45 +03:00
text = int(text) if text.isdigit() else text
2010-12-03 13:51:27 +03:00
elif isinstance(text, list):
count = 0
2012-12-10 20:20:04 +04:00
for _ in text:
2015-12-23 10:55:45 +03:00
text[count] = int(_) if _.isdigit() else _
2010-12-03 13:51:27 +03:00
count += 1
2010-12-03 13:51:27 +03:00
if len(text) == 1 and tag not in ("clause", "where"):
text = text[0]
2010-12-03 13:51:27 +03:00
return text
def parseXmlNode(node):
2018-06-20 16:21:42 +03:00
for element in node.getiterator("boundary"):
2011-07-08 10:02:31 +04:00
boundary = AttribDict()
for child in element.getchildren():
if child.text:
2010-12-03 13:51:27 +03:00
values = cleanupVals(child.text, child.tag)
boundary[child.tag] = values
else:
boundary[child.tag] = None
conf.boundaries.append(boundary)
2018-06-20 16:21:42 +03:00
for element in node.getiterator("test"):
2011-07-08 10:02:31 +04:00
test = AttribDict()
for child in element.getchildren():
if child.text and child.text.strip():
2010-12-03 13:51:27 +03:00
values = cleanupVals(child.text, child.tag)
test[child.tag] = values
else:
if len(child.getchildren()) == 0:
test[child.tag] = None
continue
else:
2011-07-08 10:02:31 +04:00
test[child.tag] = AttribDict()
for gchild in child.getchildren():
if gchild.tag in test[child.tag]:
prevtext = test[child.tag][gchild.tag]
test[child.tag][gchild.tag] = [prevtext, gchild.text]
else:
test[child.tag][gchild.tag] = gchild.text
conf.tests.append(test)
def loadBoundaries():
2014-11-10 15:41:53 +03:00
try:
doc = et.parse(paths.BOUNDARIES_XML)
2019-01-22 02:40:48 +03:00
except Exception as ex:
2016-05-22 22:44:17 +03:00
errMsg = "something appears to be wrong with "
2015-10-23 15:29:48 +03:00
errMsg += "the file '%s' ('%s'). Please make " % (paths.BOUNDARIES_XML, getSafeExString(ex))
2014-11-10 15:41:53 +03:00
errMsg += "sure that you haven't made any changes to it"
2018-03-13 13:13:38 +03:00
raise SqlmapInstallationException(errMsg)
2014-11-10 15:41:53 +03:00
root = doc.getroot()
parseXmlNode(root)
def loadPayloads():
for payloadFile in PAYLOAD_XML_FILES:
payloadFilePath = os.path.join(paths.SQLMAP_XML_PAYLOADS_PATH, payloadFile)
try:
doc = et.parse(payloadFilePath)
2019-01-22 02:40:48 +03:00
except Exception as ex:
2016-05-22 22:44:17 +03:00
errMsg = "something appears to be wrong with "
2015-10-23 15:29:48 +03:00
errMsg += "the file '%s' ('%s'). Please make " % (payloadFilePath, getSafeExString(ex))
errMsg += "sure that you haven't made any changes to it"
2018-03-13 13:13:38 +03:00
raise SqlmapInstallationException(errMsg)
2015-02-18 13:13:28 +03:00
root = doc.getroot()
parseXmlNode(root)