mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 05:04:11 +03:00
minor update regarding --exact switch
This commit is contained in:
parent
b85a1fc271
commit
96177393e1
|
@ -598,7 +598,7 @@ def cmdLineParser():
|
|||
|
||||
miscellaneous.add_option("--exact", dest="exact",
|
||||
action="store_true",
|
||||
help="Prefer usage of exact names for provided identificators")
|
||||
help="Prefer usage of exactly provided identificator names")
|
||||
|
||||
miscellaneous.add_option("--gpage", dest="googlePage", type="int",
|
||||
help="Use Google dork results from specified page number")
|
||||
|
|
|
@ -1034,7 +1034,7 @@ class Enumeration:
|
|||
logger.error(errMsg)
|
||||
bruteForce = True
|
||||
|
||||
if bruteForce:
|
||||
if bruteForce or colList and conf.exact:
|
||||
resumeAvailable = False
|
||||
|
||||
for tbl in tblList:
|
||||
|
|
|
@ -635,7 +635,7 @@ cleanup = False
|
|||
# Valid: True or False
|
||||
dependencies = False
|
||||
|
||||
# Prefer usage of exact names for provided identificators.
|
||||
# Prefer usage of exactly provided identificator names.
|
||||
# Valid: True or False
|
||||
exact = False
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user