Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 546a6c3 commit 406d5dfCopy full SHA for 406d5df
2 files changed
lib/parse/cmdline.py
@@ -245,7 +245,7 @@ def cmdLineParser():
245
246
enumeration.add_option("--dump", dest="dumpTable", action="store_true",
247
help="Dump DBMS database table entries "
248
- "(req -T, opt -D, -C, --start, --stop)")
+ "(req -T, opt -D, -C)")
249
250
enumeration.add_option("--dump-all", dest="dumpAll", action="store_true",
251
help="Dump all DBMS databases tables entries")
@@ -268,10 +268,10 @@ def cmdLineParser():
268
"enumerating tables")
269
270
enumeration.add_option("--start", dest="limitStart", type="int",
271
- help="First table entry to dump")
+ help="First query output entry to retrieve")
272
273
enumeration.add_option("--stop", dest="limitStop", type="int",
274
- help="Last table entry to dump")
+ help="Last query output entry to retrieve")
275
276
enumeration.add_option("--sql-query", dest="query",
277
help="SQL statement to be executed")
sqlmap.conf
@@ -250,15 +250,16 @@ user =
# Valid: True or False
excludeSysDbs = False
252
253
-# First table entry to dump (cursor start)
+# First query output entry to retrieve
254
# Valid: integer
255
-# 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
256
+# the first)
257
limitStart = 0
258
-# Last table entry to dump (cursor stop)
259
+# Last query output entry to retrieve
260
-# Default: 0 (sqlmap will detect the number of table entries and dump
261
-# until the last)
+# Default: 0 (sqlmap will detect the number of query output entries and
262
+# retrieve them until the last)
263
limitStop = 0
264
265
# SQL SELECT query to be executed.
0 commit comments