SIGN IN SIGN UP
sqlmapproject / sqlmap UNCLAIMED

Automatic SQL injection and database takeover tool

36950 0 0 Python
2019-05-08 12:47:52 +02:00
#!/usr/bin/env python
2008-10-15 15:38:22 +00:00
"""
2024-01-03 23:11:52 +01:00
Copyright (c) 2006-2024 sqlmap developers (https://sqlmap.org/)
2017-10-11 14:50:46 +02:00
See the file 'LICENSE' for copying permission
2008-10-15 15:38:22 +00:00
"""
2010-05-30 14:53:13 +00:00
2008-10-15 15:38:22 +00:00
from lib.core.common import checkFile
from lib.core.common import getSafeExString
2014-11-26 13:38:21 +01:00
from lib.core.common import openFile
2012-04-03 14:46:09 +00:00
from lib.core.common import unArrayizeValue
2010-05-28 15:57:43 +00:00
from lib.core.common import UnicodeRawConfigParser
2019-05-06 00:54:21 +02:00
from lib.core.convert import getUnicode
2016-02-23 11:46:04 +01:00
from lib.core.data import cmdLineOptions
2011-02-02 14:06:40 +00:00
from lib.core.data import conf
2008-10-15 15:38:22 +00:00
from lib.core.data import logger
2017-01-18 10:33:54 +01:00
from lib.core.enums import OPTION_TYPE
from lib.core.exception import SqlmapMissingMandatoryOptionException
from lib.core.exception import SqlmapSyntaxException
2008-10-15 15:38:22 +00:00
from lib.core.optiondict import optDict
config = None
2017-01-18 10:33:54 +01:00
def configFileProxy(section, option, datatype):
2008-10-15 15:38:22 +00:00
"""
Parse configuration file and save settings into the configuration
advanced dictionary.
"""
if config.has_option(section, option):
try:
2017-01-18 10:33:54 +01:00
if datatype == OPTION_TYPE.BOOLEAN:
value = config.getboolean(section, option) if config.get(section, option) else False
2017-01-18 10:33:54 +01:00
elif datatype == OPTION_TYPE.INTEGER:
value = config.getint(section, option) if config.get(section, option) else 0
2017-01-18 10:33:54 +01:00
elif datatype == OPTION_TYPE.FLOAT:
value = config.getfloat(section, option) if config.get(section, option) else 0.0
else:
value = config.get(section, option)
2019-01-22 00:40:48 +01:00
except ValueError as ex:
errMsg = "error occurred while processing the option "
2014-12-15 13:36:08 +01:00
errMsg += "'%s' in provided configuration file ('%s')" % (option, getUnicode(ex))
raise SqlmapSyntaxException(errMsg)
2008-10-15 15:38:22 +00:00
if value:
conf[option] = value
else:
conf[option] = None
else:
2011-04-30 13:20:05 +00:00
debugMsg = "missing requested option '%s' (section " % option
2008-10-15 15:38:22 +00:00
debugMsg += "'%s') into the configuration file, " % section
debugMsg += "ignoring. Skipping to next."
logger.debug(debugMsg)
def configFileParser(configFile):
"""
Parse configuration file and save settings into the configuration
advanced dictionary.
"""
global config
debugMsg = "parsing configuration file"
logger.debug(debugMsg)
checkFile(configFile)
2014-11-26 13:38:21 +01:00
configFP = openFile(configFile, "rb")
try:
config = UnicodeRawConfigParser()
2024-04-12 17:32:38 +02:00
if hasattr(config, "read_file"):
config.read_file(configFP)
else:
config.readfp(configFP)
2019-01-22 00:40:48 +01:00
except Exception as ex:
errMsg = "you have provided an invalid and/or unreadable configuration file ('%s')" % getSafeExString(ex)
raise SqlmapSyntaxException(errMsg)
2008-10-15 15:38:22 +00:00
if not config.has_section("Target"):
errMsg = "missing a mandatory section 'Target' in the configuration file"
raise SqlmapMissingMandatoryOptionException(errMsg)
2008-10-15 15:38:22 +00:00
2016-02-23 11:46:04 +01:00
mandatory = False
for option in ("direct", "url", "logFile", "bulkFile", "googleDork", "requestFile", "wizard"):
2016-02-23 11:46:04 +01:00
if config.has_option("Target", option) and config.get("Target", option) or cmdLineOptions.get(option):
mandatory = True
break
if not mandatory:
errMsg = "missing a mandatory option in the configuration file "
errMsg += "(direct, url, logFile, bulkFile, googleDork, requestFile or wizard)"
raise SqlmapMissingMandatoryOptionException(errMsg)
2008-10-15 15:38:22 +00:00
for family, optionData in optDict.items():
2010-05-28 15:57:43 +00:00
for option, datatype in optionData.items():
2012-04-03 14:46:09 +00:00
datatype = unArrayizeValue(datatype)
2017-01-18 10:33:54 +01:00
configFileProxy(family, option, datatype)