sqlmap/lib/parse/configfile.py

92 lines
2.6 KiB
Python
Raw Normal View History

2008-10-15 19:38:22 +04:00
#!/usr/bin/env python
"""
2008-10-15 19:56:32 +04:00
$Id$
2008-10-15 19:38:22 +04:00
Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
2010-10-15 03:18:29 +04:00
See the file 'doc/COPYING' for copying permission
2008-10-15 19:38:22 +04:00
"""
2010-05-30 18:53:13 +04:00
2010-05-28 18:04:34 +04:00
import codecs
2008-10-15 19:38:22 +04:00
from ConfigParser import NoSectionError
from lib.core.common import checkFile
2010-05-28 19:57:43 +04:00
from lib.core.common import UnicodeRawConfigParser
2011-02-02 17:06:40 +03:00
from lib.core.data import conf
2008-10-15 19:38:22 +04:00
from lib.core.data import logger
from lib.core.exception import sqlmapMissingMandatoryOptionException
from lib.core.optiondict import optDict
2011-01-30 14:36:03 +03:00
from lib.core.settings import UNICODE_ENCODING
2008-10-15 19:38:22 +04:00
config = None
def configFileProxy(section, option, boolean=False, integer=False):
"""
Parse configuration file and save settings into the configuration
advanced dictionary.
"""
global config
if config.has_option(section, option):
2010-05-28 19:57:43 +04:00
if boolean:
value = config.getboolean(section, option)
elif integer:
value = config.getint(section, option)
else:
value = config.get(section, option)
2008-10-15 19:38:22 +04:00
if value:
conf[option] = value
else:
conf[option] = None
else:
debugMsg = "missing requested option '%s' (section " % option
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)
2011-01-30 14:36:03 +03:00
configFP = codecs.open(configFile, "rb", UNICODE_ENCODING)
2010-05-28 19:57:43 +04:00
config = UnicodeRawConfigParser()
config.readfp(configFP)
2008-10-15 19:38:22 +04:00
if not config.has_section("Target"):
raise NoSectionError, "Target in the configuration file is mandatory"
2008-10-15 19:38:22 +04:00
condition = not config.has_option("Target", "url")
condition &= not config.has_option("Target", "list")
condition &= not config.has_option("Target", "googleDork")
if condition:
2008-10-15 19:38:22 +04:00
errMsg = "missing a mandatory option in the configuration "
errMsg += "file (url, list or googleDork)"
2008-10-15 19:38:22 +04:00
raise sqlmapMissingMandatoryOptionException, errMsg
for family, optionData in optDict.items():
2010-05-28 19:57:43 +04:00
for option, datatype in optionData.items():
2008-10-15 19:38:22 +04:00
boolean = False
integer = False
2010-05-28 19:57:43 +04:00
if isinstance(datatype, (list, tuple, set)):
datatype = datatype[0]
2010-05-27 20:46:17 +04:00
2010-05-28 19:57:43 +04:00
if datatype == "boolean":
2008-10-15 19:38:22 +04:00
boolean = True
2010-05-28 19:57:43 +04:00
elif datatype == "integer":
2008-10-15 19:38:22 +04:00
integer = True
configFileProxy(family, option, boolean, integer)