mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Moving '--pivot-column' to a General section (Issue #437)
This commit is contained in:
parent
9d045e14e8
commit
b7d4afcc63
3 changed files with 8 additions and 8 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue