mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Adapted code following last commit
This commit is contained in:
parent
9de1671b8f
commit
7e925bcfe8
|
@ -42,12 +42,18 @@ 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)
|
||||
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
|
||||
|
@ -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":
|
||||
|
|
Loading…
Reference in New Issue
Block a user