mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-04-10 04:04:19 +03:00
Moving '--pivot-column' to a General section (Issue #437)
This commit is contained in:
parent
9d045e14e8
commit
b7d4afcc63
|
@ -114,7 +114,6 @@ optDict = {
|
|||
"getCount": "boolean",
|
||||
"dumpTable": "boolean",
|
||||
"dumpAll": "boolean",
|
||||
"pivotColumn": "string",
|
||||
"search": "boolean",
|
||||
"db": "string",
|
||||
"tbl": "string",
|
||||
|
@ -185,6 +184,7 @@ optDict = {
|
|||
"hexConvert": "boolean",
|
||||
"oDir": "string",
|
||||
"parseErrors": "boolean",
|
||||
"pivotColumn": "string",
|
||||
"saveCmdline": "boolean",
|
||||
"updateAll": "boolean",
|
||||
"tor": "boolean",
|
||||
|
|
|
@ -365,9 +365,6 @@ def cmdLineParser():
|
|||
enumeration.add_option("--dump-all", dest="dumpAll", action="store_true",
|
||||
help="Dump all DBMS databases tables entries")
|
||||
|
||||
enumeration.add_option("--pivot-column", dest="pivotColumn",
|
||||
help="Pivot column name")
|
||||
|
||||
enumeration.add_option("--search", dest="search", action="store_true",
|
||||
help="Search column(s), table(s) and/or database name(s)")
|
||||
|
||||
|
@ -591,6 +588,9 @@ def cmdLineParser():
|
|||
action="store_true",
|
||||
help="Parse and display DBMS error messages from responses")
|
||||
|
||||
general.add_option("--pivot-column", dest="pivotColumn",
|
||||
help="Pivot column name")
|
||||
|
||||
general.add_option("--save", dest="saveCmdline",
|
||||
action="store_true",
|
||||
help="Save options to a configuration INI file")
|
||||
|
|
|
@ -398,9 +398,6 @@ dumpTable = False
|
|||
# Valid: True or False
|
||||
dumpAll = False
|
||||
|
||||
# Pivot column name.
|
||||
pivotColumn =
|
||||
|
||||
# Search column(s), table(s) and/or database name(s).
|
||||
# Requires: db, tbl or col
|
||||
# Valid: True or False
|
||||
|
@ -640,7 +637,10 @@ oDir =
|
|||
# Valid: True or False
|
||||
parseErrors = False
|
||||
|
||||
# Use Use Tor anonymity network.
|
||||
# Pivot column name.
|
||||
pivotColumn =
|
||||
|
||||
# Use Tor anonymity network.
|
||||
# Valid: True or False
|
||||
tor = False
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user