mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 08:14:24 +03:00
avoiding some trashy match ratios
This commit is contained in:
parent
d2a3e8f44f
commit
03447acc1d
|
@ -93,7 +93,7 @@ def comparison(page, headers=None, getSeqMatcher=False, pageLength=None):
|
|||
if conf.thold:
|
||||
conf.matchRatio = conf.thold
|
||||
|
||||
elif kb.pageStable and ratio > 0.6 and ratio < 1:
|
||||
elif kb.pageStable and ratio > 0.6 and ratio < 0.99:
|
||||
conf.matchRatio = ratio
|
||||
logger.debug("setting match ratio for current parameter to %.3f" % conf.matchRatio)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user