mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
Adapted code following last commit
This commit is contained in:
@@ -42,13 +42,19 @@ def configFileProxy(section, option, boolean=False, integer=False):
|
||||
global config
|
||||
|
||||
if config.has_option(section, option):
|
||||
if boolean:
|
||||
value = config.getboolean(section, option)
|
||||
elif integer:
|
||||
value = config.getint(section, option)
|
||||
else:
|
||||
value = config.get(section, option)
|
||||
|
||||
if not value:
|
||||
value = None
|
||||
elif value.isdigit():
|
||||
value = int(value)
|
||||
elif value == "False":
|
||||
value = False
|
||||
elif value == "True":
|
||||
value = True
|
||||
|
||||
print option, value, type(value)
|
||||
|
||||
if value:
|
||||
conf[option] = value
|
||||
else:
|
||||
@@ -91,6 +97,9 @@ def configFileParser(configFile):
|
||||
boolean = False
|
||||
integer = False
|
||||
|
||||
if isinstance(data, (tuple, dict, set)):
|
||||
data = data[0]
|
||||
|
||||
if data == "boolean":
|
||||
boolean = True
|
||||
elif data == "integer":
|
||||
|
||||
Reference in New Issue
Block a user