mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-05-05 16:23:46 +03:00
language fixes
This commit is contained in:
parent
46557198a5
commit
9f1e644f23
|
@ -47,8 +47,7 @@ def cmdLineParser():
|
||||||
|
|
||||||
# Target options
|
# Target options
|
||||||
target = OptionGroup(parser, "Target", "At least one of these "
|
target = OptionGroup(parser, "Target", "At least one of these "
|
||||||
"options has to be specified to set the source "
|
"options has to be provided to set the target(s)")
|
||||||
"to get target URLs from")
|
|
||||||
|
|
||||||
target.add_option("-d", dest="direct", help="Direct "
|
target.add_option("-d", dest="direct", help="Direct "
|
||||||
"connection to the database")
|
"connection to the database")
|
||||||
|
@ -160,7 +159,7 @@ def cmdLineParser():
|
||||||
|
|
||||||
# Optimization options
|
# Optimization options
|
||||||
optimization = OptionGroup(parser, "Optimization", "These "
|
optimization = OptionGroup(parser, "Optimization", "These "
|
||||||
"options can be used to optimize the "
|
"switches can be used to optimize the "
|
||||||
"performance of sqlmap")
|
"performance of sqlmap")
|
||||||
|
|
||||||
optimization.add_option("-o", dest="optimize",
|
optimization.add_option("-o", dest="optimize",
|
||||||
|
@ -226,10 +225,7 @@ def cmdLineParser():
|
||||||
|
|
||||||
# Detection options
|
# Detection options
|
||||||
detection = OptionGroup(parser, "Detection", "These options can be "
|
detection = OptionGroup(parser, "Detection", "These options can be "
|
||||||
"used to specify how to parse "
|
"used to customize the detection phase")
|
||||||
"and compare page content from "
|
|
||||||
"HTTP responses when using blind SQL "
|
|
||||||
"injection technique")
|
|
||||||
|
|
||||||
detection.add_option("--level", dest="level", type="int",
|
detection.add_option("--level", dest="level", type="int",
|
||||||
help="Level of tests to perform (1-5, "
|
help="Level of tests to perform (1-5, "
|
||||||
|
@ -409,7 +405,7 @@ def cmdLineParser():
|
||||||
|
|
||||||
# User-defined function options
|
# User-defined function options
|
||||||
brute = OptionGroup(parser, "Brute force", "These "
|
brute = OptionGroup(parser, "Brute force", "These "
|
||||||
"options can be used to run brute force "
|
"switches can be used to run brute force "
|
||||||
"checks")
|
"checks")
|
||||||
|
|
||||||
brute.add_option("--common-tables", dest="commonTables", action="store_true",
|
brute.add_option("--common-tables", dest="commonTables", action="store_true",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user