Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 406d5df

Browse files
committed
Minor layout adjustments
1 parent 546a6c3 commit 406d5df

2 files changed

Lines changed: 9 additions & 8 deletions

File tree

lib/parse/cmdline.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def cmdLineParser():
245245

246246
enumeration.add_option("--dump", dest="dumpTable", action="store_true",
247247
help="Dump DBMS database table entries "
248-
"(req -T, opt -D, -C, --start, --stop)")
248+
"(req -T, opt -D, -C)")
249249

250250
enumeration.add_option("--dump-all", dest="dumpAll", action="store_true",
251251
help="Dump all DBMS databases tables entries")
@@ -268,10 +268,10 @@ def cmdLineParser():
268268
"enumerating tables")
269269

270270
enumeration.add_option("--start", dest="limitStart", type="int",
271-
help="First table entry to dump")
271+
help="First query output entry to retrieve")
272272

273273
enumeration.add_option("--stop", dest="limitStop", type="int",
274-
help="Last table entry to dump")
274+
help="Last query output entry to retrieve")
275275

276276
enumeration.add_option("--sql-query", dest="query",
277277
help="SQL statement to be executed")

sqlmap.conf

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -250,15 +250,16 @@ user =
250250
# Valid: True or False
251251
excludeSysDbs = False
252252

253-
# First table entry to dump (cursor start)
253+
# First query output entry to retrieve
254254
# Valid: integer
255-
# Default: 0 (sqlmap will start to dump the table entries from the first)
255+
# Default: 0 (sqlmap will start to retrieve the query output entries from
256+
# the first)
256257
limitStart = 0
257258

258-
# Last table entry to dump (cursor stop)
259+
# Last query output entry to retrieve
259260
# Valid: integer
260-
# Default: 0 (sqlmap will detect the number of table entries and dump
261-
# until the last)
261+
# Default: 0 (sqlmap will detect the number of query output entries and
262+
# retrieve them until the last)
262263
limitStop = 0
263264

264265
# SQL SELECT query to be executed.

0 commit comments

Comments
 (0)