Minor layout adjustments

This commit is contained in:
Bernardo Damele 2009-04-24 20:12:52 +00:00
parent 546a6c32e3
commit 406d5df195
2 changed files with 9 additions and 8 deletions

View File

@ -245,7 +245,7 @@ def cmdLineParser():
enumeration.add_option("--dump", dest="dumpTable", action="store_true", enumeration.add_option("--dump", dest="dumpTable", action="store_true",
help="Dump DBMS database table entries " help="Dump DBMS database table entries "
"(req -T, opt -D, -C, --start, --stop)") "(req -T, opt -D, -C)")
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")
@ -268,10 +268,10 @@ def cmdLineParser():
"enumerating tables") "enumerating tables")
enumeration.add_option("--start", dest="limitStart", type="int", enumeration.add_option("--start", dest="limitStart", type="int",
help="First table entry to dump") help="First query output entry to retrieve")
enumeration.add_option("--stop", dest="limitStop", type="int", enumeration.add_option("--stop", dest="limitStop", type="int",
help="Last table entry to dump") help="Last query output entry to retrieve")
enumeration.add_option("--sql-query", dest="query", enumeration.add_option("--sql-query", dest="query",
help="SQL statement to be executed") help="SQL statement to be executed")

View File

@ -250,15 +250,16 @@ user =
# Valid: True or False # Valid: True or False
excludeSysDbs = False excludeSysDbs = False
# First table entry to dump (cursor start) # First query output entry to retrieve
# Valid: integer # Valid: integer
# Default: 0 (sqlmap will start to dump the table entries from the first) # Default: 0 (sqlmap will start to retrieve the query output entries from
# the first)
limitStart = 0 limitStart = 0
# Last table entry to dump (cursor stop) # Last query output entry to retrieve
# Valid: integer # Valid: integer
# Default: 0 (sqlmap will detect the number of table entries and dump # Default: 0 (sqlmap will detect the number of query output entries and
# until the last) # retrieve them until the last)
limitStop = 0 limitStop = 0
# SQL SELECT query to be executed. # SQL SELECT query to be executed.