mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 13:14:13 +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",
|
miscellaneous.add_option("--exact", dest="exact",
|
||||||
action="store_true",
|
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",
|
miscellaneous.add_option("--gpage", dest="googlePage", type="int",
|
||||||
help="Use Google dork results from specified page number")
|
help="Use Google dork results from specified page number")
|
||||||
|
|
|
@ -1034,7 +1034,7 @@ class Enumeration:
|
||||||
logger.error(errMsg)
|
logger.error(errMsg)
|
||||||
bruteForce = True
|
bruteForce = True
|
||||||
|
|
||||||
if bruteForce:
|
if bruteForce or colList and conf.exact:
|
||||||
resumeAvailable = False
|
resumeAvailable = False
|
||||||
|
|
||||||
for tbl in tblList:
|
for tbl in tblList:
|
||||||
|
|
|
@ -635,7 +635,7 @@ cleanup = False
|
||||||
# Valid: True or False
|
# Valid: True or False
|
||||||
dependencies = False
|
dependencies = False
|
||||||
|
|
||||||
# Prefer usage of exact names for provided identificators.
|
# Prefer usage of exactly provided identificator names.
|
||||||
# Valid: True or False
|
# Valid: True or False
|
||||||
exact = False
|
exact = False
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user