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