From 406d5df19592bed19ab47f3e35f05c52deca329f Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Fri, 24 Apr 2009 20:12:52 +0000 Subject: [PATCH] Minor layout adjustments --- lib/parse/cmdline.py | 6 +++--- sqlmap.conf | 11 ++++++----- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/lib/parse/cmdline.py b/lib/parse/cmdline.py index e399e9525..cea40f8d5 100644 --- a/lib/parse/cmdline.py +++ b/lib/parse/cmdline.py @@ -245,7 +245,7 @@ def cmdLineParser(): enumeration.add_option("--dump", dest="dumpTable", action="store_true", 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", help="Dump all DBMS databases tables entries") @@ -268,10 +268,10 @@ def cmdLineParser(): "enumerating tables") 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", - help="Last table entry to dump") + help="Last query output entry to retrieve") enumeration.add_option("--sql-query", dest="query", help="SQL statement to be executed") diff --git a/sqlmap.conf b/sqlmap.conf index 7a2653d6b..2f3b081d4 100644 --- a/sqlmap.conf +++ b/sqlmap.conf @@ -250,15 +250,16 @@ user = # Valid: True or False excludeSysDbs = False -# First table entry to dump (cursor start) +# First query output entry to retrieve # 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 -# Last table entry to dump (cursor stop) +# Last query output entry to retrieve # Valid: integer -# Default: 0 (sqlmap will detect the number of table entries and dump -# until the last) +# Default: 0 (sqlmap will detect the number of query output entries and +# retrieve them until the last) limitStop = 0 # SQL SELECT query to be executed.