mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 11:03:47 +03:00
minor update (all misc options are alphabetically ordered)
This commit is contained in:
parent
bedf16b88b
commit
d72db1bf91
|
@ -168,6 +168,7 @@ optDict = {
|
||||||
"checkPayload": "boolean",
|
"checkPayload": "boolean",
|
||||||
"cleanup": "boolean",
|
"cleanup": "boolean",
|
||||||
"crawlDepth": "integer",
|
"crawlDepth": "integer",
|
||||||
|
"dependencies": "boolean",
|
||||||
"forms": "boolean",
|
"forms": "boolean",
|
||||||
"googlePage": "integer",
|
"googlePage": "integer",
|
||||||
"mobile": "boolean",
|
"mobile": "boolean",
|
||||||
|
@ -176,7 +177,6 @@ optDict = {
|
||||||
"replicate": "boolean",
|
"replicate": "boolean",
|
||||||
"tor": "boolean",
|
"tor": "boolean",
|
||||||
"wizard": "boolean",
|
"wizard": "boolean",
|
||||||
"dependencies": "boolean",
|
|
||||||
"verbose": "integer"
|
"verbose": "integer"
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -514,6 +514,10 @@ def cmdLineParser():
|
||||||
miscellaneous.add_option("--crawl", dest="crawlDepth", type="int",
|
miscellaneous.add_option("--crawl", dest="crawlDepth", type="int",
|
||||||
help="Crawl the website starting from the target url")
|
help="Crawl the website starting from the target url")
|
||||||
|
|
||||||
|
miscellaneous.add_option("--dependencies", dest="dependencies",
|
||||||
|
action="store_true",
|
||||||
|
help="Check for missing sqlmap dependencies")
|
||||||
|
|
||||||
miscellaneous.add_option("--forms", dest="forms",
|
miscellaneous.add_option("--forms", dest="forms",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help="Parse and test forms on target url")
|
help="Parse and test forms on target url")
|
||||||
|
@ -545,10 +549,6 @@ def cmdLineParser():
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help="Simple wizard interface for beginner users")
|
help="Simple wizard interface for beginner users")
|
||||||
|
|
||||||
miscellaneous.add_option("--dependencies", dest="dependencies",
|
|
||||||
action="store_true",
|
|
||||||
help="Check for missing sqlmap dependencies")
|
|
||||||
|
|
||||||
# Hidden and/or experimental options
|
# Hidden and/or experimental options
|
||||||
parser.add_option("--profile", dest="profile", action="store_true",
|
parser.add_option("--profile", dest="profile", action="store_true",
|
||||||
help=SUPPRESS_HELP)
|
help=SUPPRESS_HELP)
|
||||||
|
|
|
@ -548,6 +548,10 @@ cleanup = False
|
||||||
# Default: 0
|
# Default: 0
|
||||||
crawlDepth = 0
|
crawlDepth = 0
|
||||||
|
|
||||||
|
# Show which sqlmap dependencies are not available.
|
||||||
|
# Valid: True or False
|
||||||
|
dependencies = False
|
||||||
|
|
||||||
# Parse and test forms on target url
|
# Parse and test forms on target url
|
||||||
# Valid: True or False
|
# Valid: True or False
|
||||||
forms = False
|
forms = False
|
||||||
|
@ -581,10 +585,6 @@ tor = False
|
||||||
# Valid: True or False
|
# Valid: True or False
|
||||||
wizard = False
|
wizard = False
|
||||||
|
|
||||||
# Show which sqlmap dependencies are not available.
|
|
||||||
# Valid: True or False
|
|
||||||
dependencies = False
|
|
||||||
|
|
||||||
# Verbosity level.
|
# Verbosity level.
|
||||||
# Valid: integer between 0 and 6
|
# Valid: integer between 0 and 6
|
||||||
# 0: Show only error and critical messages
|
# 0: Show only error and critical messages
|
||||||
|
|
Loading…
Reference in New Issue
Block a user