mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-08 21:51:29 +00:00
Hide switch -x (XML output format) as it is incomplete and bugged and won't make it for 0.9 stable
This commit is contained in:
@@ -145,9 +145,9 @@ optDict = {
|
||||
},
|
||||
|
||||
"General": {
|
||||
"xmlFile": "string",
|
||||
"sessionFile": "string",
|
||||
#"xmlFile": "string",
|
||||
"trafficFile": "string",
|
||||
"sessionFile": "string",
|
||||
"flushSession": "boolean",
|
||||
"forms": "boolean",
|
||||
"eta": "boolean",
|
||||
|
||||
@@ -238,7 +238,7 @@ def __createDumpDir():
|
||||
os.makedirs(conf.dumpPath, 0755)
|
||||
|
||||
def __configureDumper():
|
||||
if conf.xmlFile:
|
||||
if hasattr(conf, 'xmlFile') and conf.xmlFile:
|
||||
conf.dumper = xmldumper
|
||||
else:
|
||||
conf.dumper = dumper
|
||||
|
||||
Reference in New Issue
Block a user