mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-10 09:49:06 +00:00
Minor adjustment to UNION query SQL injection detection function.
Updated command line help message based upon recent developments. Updated copyright note of lib/contrib/multipartpost.py.
This commit is contained in:
@@ -72,9 +72,9 @@ def comparison(page, headers=None, getSeqMatcher=False):
|
||||
conf.seqMatcher.set_seq2(page)
|
||||
|
||||
if getSeqMatcher:
|
||||
return round(conf.seqMatcher.ratio(), 5)
|
||||
return round(conf.seqMatcher.ratio(), 3)
|
||||
|
||||
elif round(conf.seqMatcher.ratio(), 5) >= MATCH_RATIO:
|
||||
elif round(conf.seqMatcher.ratio(), 3) >= MATCH_RATIO:
|
||||
return True
|
||||
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user