mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 19:13:48 +03:00
revert of last commit (conf dictionary has a method "update" which caused if conf.update to True always :) )
This commit is contained in:
parent
5edba2ffbc
commit
1b9850b73a
|
@ -155,7 +155,7 @@ optDict = {
|
||||||
"flushSession": "boolean",
|
"flushSession": "boolean",
|
||||||
"forms": "boolean",
|
"forms": "boolean",
|
||||||
"eta": "boolean",
|
"eta": "boolean",
|
||||||
"update": "boolean",
|
"updateAll": "boolean",
|
||||||
"batch": "boolean"
|
"batch": "boolean"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@ from lib.core.subprocessng import pollProcess
|
||||||
from lib.request.connect import Connect as Request
|
from lib.request.connect import Connect as Request
|
||||||
|
|
||||||
def update():
|
def update():
|
||||||
if not conf.update:
|
if not conf.updateAll:
|
||||||
return
|
return
|
||||||
|
|
||||||
rootDir = paths.SQLMAP_ROOT_PATH
|
rootDir = paths.SQLMAP_ROOT_PATH
|
||||||
|
|
|
@ -467,7 +467,7 @@ def cmdLineParser():
|
||||||
help="Display for each output the "
|
help="Display for each output the "
|
||||||
"estimated time of arrival")
|
"estimated time of arrival")
|
||||||
|
|
||||||
general.add_option("--update", dest="update",
|
general.add_option("--update", dest="updateAll",
|
||||||
action="store_true", default=False,
|
action="store_true", default=False,
|
||||||
help="Update sqlmap")
|
help="Update sqlmap")
|
||||||
|
|
||||||
|
@ -554,7 +554,7 @@ def cmdLineParser():
|
||||||
(args, _) = parser.parse_args(args)
|
(args, _) = parser.parse_args(args)
|
||||||
|
|
||||||
if not args.direct and not args.url and not args.list and not args.googleDork and not args.configFile\
|
if not args.direct and not args.url and not args.list and not args.googleDork and not args.configFile\
|
||||||
and not args.requestFile and not args.update and not args.smokeTest and not args.liveTest\
|
and not args.requestFile and not args.updateAll and not args.smokeTest and not args.liveTest\
|
||||||
and not args.realTest:
|
and not args.realTest:
|
||||||
errMsg = "missing a mandatory parameter ('-d', '-u', '-l', '-r', '-g', '-c' or '--update'), "
|
errMsg = "missing a mandatory parameter ('-d', '-u', '-l', '-r', '-g', '-c' or '--update'), "
|
||||||
errMsg += "-h for help"
|
errMsg += "-h for help"
|
||||||
|
|
|
@ -514,7 +514,7 @@ eta = False
|
||||||
|
|
||||||
# Update sqlmap.
|
# Update sqlmap.
|
||||||
# Valid: True or False
|
# Valid: True or False
|
||||||
update = False
|
updateAll = False
|
||||||
|
|
||||||
# Never ask for user input, use the default behaviour.
|
# Never ask for user input, use the default behaviour.
|
||||||
# Valid: True or False
|
# Valid: True or False
|
||||||
|
|
Loading…
Reference in New Issue
Block a user