mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 19:13:48 +03:00
Proper patch for #1723
This commit is contained in:
parent
256b1988b9
commit
a90913c57d
|
@ -2165,7 +2165,6 @@ def _mergeOptions(inputOptions, overrideOptions):
|
||||||
if hasattr(conf, key) and conf[key] is None:
|
if hasattr(conf, key) and conf[key] is None:
|
||||||
conf[key] = value
|
conf[key] = value
|
||||||
|
|
||||||
|
|
||||||
lut = {}
|
lut = {}
|
||||||
for group in optDict.keys():
|
for group in optDict.keys():
|
||||||
lut.update((_.upper(), _) for _ in optDict[group])
|
lut.update((_.upper(), _) for _ in optDict[group])
|
||||||
|
|
|
@ -11,6 +11,7 @@ from lib.core.common import getUnicode
|
||||||
from lib.core.common import openFile
|
from lib.core.common import openFile
|
||||||
from lib.core.common import unArrayizeValue
|
from lib.core.common import unArrayizeValue
|
||||||
from lib.core.common import UnicodeRawConfigParser
|
from lib.core.common import UnicodeRawConfigParser
|
||||||
|
from lib.core.data import cmdLineOptions
|
||||||
from lib.core.data import conf
|
from lib.core.data import conf
|
||||||
from lib.core.data import logger
|
from lib.core.data import logger
|
||||||
from lib.core.exception import SqlmapMissingMandatoryOptionException
|
from lib.core.exception import SqlmapMissingMandatoryOptionException
|
||||||
|
@ -75,16 +76,14 @@ def configFileParser(configFile):
|
||||||
errMsg = "missing a mandatory section 'Target' in the configuration file"
|
errMsg = "missing a mandatory section 'Target' in the configuration file"
|
||||||
raise SqlmapMissingMandatoryOptionException(errMsg)
|
raise SqlmapMissingMandatoryOptionException(errMsg)
|
||||||
|
|
||||||
condition = not config.has_option("Target", "direct")
|
mandatory = False
|
||||||
condition &= not config.has_option("Target", "url")
|
|
||||||
condition &= not config.has_option("Target", "logFile")
|
|
||||||
condition &= not config.has_option("Target", "bulkFile")
|
|
||||||
condition &= not config.has_option("Target", "googleDork")
|
|
||||||
condition &= not config.has_option("Target", "requestFile")
|
|
||||||
condition &= not config.has_option("Target", "sitemapUrl")
|
|
||||||
condition &= not config.has_option("Target", "wizard")
|
|
||||||
|
|
||||||
if condition:
|
for option in ("direct", "url", "logFile", "bulkFile", "googleDork", "requestFile", "sitemapUrl", "wizard"):
|
||||||
|
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 = "missing a mandatory option in the configuration file "
|
||||||
errMsg += "(direct, url, logFile, bulkFile, googleDork, requestFile, sitemapUrl or wizard)"
|
errMsg += "(direct, url, logFile, bulkFile, googleDork, requestFile, sitemapUrl or wizard)"
|
||||||
raise SqlmapMissingMandatoryOptionException(errMsg)
|
raise SqlmapMissingMandatoryOptionException(errMsg)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user