mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
hidding --group-concat switch
This commit is contained in:
parent
4889764114
commit
1abcd507b8
|
@ -149,9 +149,6 @@ def cmdLineParser():
|
||||||
help="Max number of concurrent HTTP(s) "
|
help="Max number of concurrent HTTP(s) "
|
||||||
"requests (default 1)")
|
"requests (default 1)")
|
||||||
|
|
||||||
optimization.add_option("--group-concat", dest="groupConcat", action="store_true",
|
|
||||||
default=False, help="Use GROUP_CONCAT (MySQL/error) in dumping phase (experimental)")
|
|
||||||
|
|
||||||
# Injection options
|
# Injection options
|
||||||
injection = OptionGroup(parser, "Injection", "These options can be "
|
injection = OptionGroup(parser, "Injection", "These options can be "
|
||||||
"used to specify which parameters to test "
|
"used to specify which parameters to test "
|
||||||
|
@ -518,6 +515,9 @@ def cmdLineParser():
|
||||||
parser.add_option("--technique", dest="technique", type="int",
|
parser.add_option("--technique", dest="technique", type="int",
|
||||||
default=0, help=SUPPRESS_HELP)
|
default=0, help=SUPPRESS_HELP)
|
||||||
|
|
||||||
|
parser.add_option("--group-concat", dest="groupConcat", action="store_true",
|
||||||
|
default=False, help=SUPPRESS_HELP)
|
||||||
|
|
||||||
parser.add_option_group(target)
|
parser.add_option_group(target)
|
||||||
parser.add_option_group(request)
|
parser.add_option_group(request)
|
||||||
parser.add_option_group(optimization)
|
parser.add_option_group(optimization)
|
||||||
|
|
|
@ -149,10 +149,6 @@ nullConnection = False
|
||||||
# Default: 1
|
# Default: 1
|
||||||
threads = 1
|
threads = 1
|
||||||
|
|
||||||
# Use GROUP_CONCAT MySQL technique in dumping phase.
|
|
||||||
# Valid: True or False
|
|
||||||
groupConcat = False
|
|
||||||
|
|
||||||
|
|
||||||
# These options can be used to specify which parameters to test for,
|
# These options can be used to specify which parameters to test for,
|
||||||
# provide custom injection payloads and optional tampering scripts.
|
# provide custom injection payloads and optional tampering scripts.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user