mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Fixes #3687
This commit is contained in:
parent
dd450b53f4
commit
23a7aea2db
2 changed files with 3 additions and 3 deletions
|
|
@ -514,8 +514,8 @@ def checkSqlInjection(place, parameter, value):
|
|||
seqMatcher = getCurrentThreadData().seqMatcher
|
||||
|
||||
for current in (kb.originalPage, kb.heuristicPage):
|
||||
seqMatcher.set_seq1(current)
|
||||
seqMatcher.set_seq2(falsePage)
|
||||
seqMatcher.set_seq1(current or "")
|
||||
seqMatcher.set_seq2(falsePage or "")
|
||||
ratio *= seqMatcher.quick_ratio()
|
||||
|
||||
if ratio == 1.0:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue