mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-30 06:00:59 +00:00
Added option --search to work in conjunction with -D (done), -T (soon) or -C (replaces --dump -C) - See #190:
* --search -D foobar: searches all database names like the ones provided * --search -T foobar: searches all databases' table names like the ones provided (soon) * --search -C foobar: replaces --dump -C
This commit is contained in:
parent
7b6050f3c1
commit
65a05452f7
13 changed files with 516 additions and 338 deletions
|
|
@ -275,6 +275,9 @@ def cmdLineParser():
|
|||
enumeration.add_option("--dump-all", dest="dumpAll", action="store_true",
|
||||
help="Dump all DBMS databases tables entries")
|
||||
|
||||
enumeration.add_option("--search", dest="search", action="store_true",
|
||||
help="Search column(s), table(s) and/or database name(s)")
|
||||
|
||||
enumeration.add_option("-D", dest="db",
|
||||
help="DBMS database to enumerate")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue