mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Minor layout adjustments
This commit is contained in:
parent
d58ba7ee6d
commit
dc04fa7f06
|
@ -65,7 +65,7 @@ optDict = {
|
||||||
"Techniques": {
|
"Techniques": {
|
||||||
"stackedTest": "boolean",
|
"stackedTest": "boolean",
|
||||||
"timeTest": "boolean",
|
"timeTest": "boolean",
|
||||||
"timesec": "integer",
|
"timeSec": "integer",
|
||||||
"unionTest": "boolean",
|
"unionTest": "boolean",
|
||||||
"uTech": "string",
|
"uTech": "string",
|
||||||
"unionUse": "boolean"
|
"unionUse": "boolean"
|
||||||
|
|
|
@ -51,7 +51,7 @@ def cmdLineParser():
|
||||||
target.add_option("-u", "--url", dest="url", help="Target url")
|
target.add_option("-u", "--url", dest="url", help="Target url")
|
||||||
|
|
||||||
target.add_option("-l", dest="list", help="Parse targets from Burp "
|
target.add_option("-l", dest="list", help="Parse targets from Burp "
|
||||||
"or WebScarab logs")
|
"or WebScarab proxy logs")
|
||||||
|
|
||||||
target.add_option("-g", dest="googleDork",
|
target.add_option("-g", dest="googleDork",
|
||||||
help="Process Google dork results as target urls")
|
help="Process Google dork results as target urls")
|
||||||
|
@ -117,9 +117,9 @@ def cmdLineParser():
|
||||||
request.add_option("--retries", dest="retries", type="int", default=3,
|
request.add_option("--retries", dest="retries", type="int", default=3,
|
||||||
help="Retries when the connection timeouts "
|
help="Retries when the connection timeouts "
|
||||||
"(default 3)")
|
"(default 3)")
|
||||||
|
|
||||||
request.add_option("--scope", dest="scope",
|
request.add_option("--scope", dest="scope",
|
||||||
help="Regex expression for filtering targets "
|
help="Regexp to filter targets from provided proxy log")
|
||||||
"from provided Burp or WebScarab log")
|
|
||||||
|
|
||||||
# Injection options
|
# Injection options
|
||||||
injection = OptionGroup(parser, "Injection", "These options can be "
|
injection = OptionGroup(parser, "Injection", "These options can be "
|
||||||
|
|
|
@ -95,9 +95,10 @@ timeout = 30
|
||||||
# Default: 3
|
# Default: 3
|
||||||
retries = 3
|
retries = 3
|
||||||
|
|
||||||
# Regex expression for filtering targets
|
# Regular expression for filtering targets from provided Burp
|
||||||
# from provided Burp or WebScarab log (e.g. (google|yahoo))
|
# or WebScarab proxy log.
|
||||||
scope = None
|
# Example: (google|yahoo)
|
||||||
|
scope =
|
||||||
|
|
||||||
|
|
||||||
[Injection]
|
[Injection]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user