mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Added switch --schema to enumerate DBMS schema and now --columns does not require a mandatory table (-T) anymore, instead it will act as an alias for --schema
This commit is contained in:
parent
d3ed3268c3
commit
edac0b2558
5 changed files with 65 additions and 15 deletions
|
|
@ -306,11 +306,14 @@ getDbs = False
|
|||
getTables = False
|
||||
|
||||
# Enumerate back-end database management system database table columns.
|
||||
# Requires: tbl
|
||||
# Optional: db, col
|
||||
# Optional: db, tbl, col
|
||||
# Valid: True or False
|
||||
getColumns = False
|
||||
|
||||
# Enumerate back-end database management system schema.
|
||||
# Valid: True or False
|
||||
getSchema = False
|
||||
|
||||
# Dump back-end database management system database table entries.
|
||||
# Requires: tbl and/or col
|
||||
# Optional: db
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue