mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 11:03:47 +03:00
Minor fix for case-insensitive union duplicates
This commit is contained in:
parent
aff7092736
commit
a7787e83b8
|
@ -186,7 +186,7 @@ def _unionPosition(comment, place, parameter, prefix, suffix, count, where=PAYLO
|
|||
|
||||
if content and phrase in content:
|
||||
validPayload = payload
|
||||
kb.unionDuplicates = content.count(phrase) > 1
|
||||
kb.unionDuplicates = len(re.findall(phrase, content, re.I)) > 1
|
||||
vector = (position, count, comment, prefix, suffix, kb.uChar, where, kb.unionDuplicates)
|
||||
|
||||
if where == PAYLOAD.WHERE.ORIGINAL:
|
||||
|
|
Loading…
Reference in New Issue
Block a user