mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 08:22:15 +01:00
minor minor update
This commit is contained in:
parent
7036190e8e
commit
2bf212ffa9
1 changed files with 1 additions and 1 deletions
|
|
@ -2406,7 +2406,7 @@ def removeReflectiveValues(content, payload):
|
|||
while 2 * REFLECTED_NON_ALPHA_NUM_REGEX in regex:
|
||||
regex = regex.replace(2 * REFLECTED_NON_ALPHA_NUM_REGEX, REFLECTED_NON_ALPHA_NUM_REGEX)
|
||||
|
||||
retVal = re.sub(regex, REFLECTED_VALUE_MARKER, content)
|
||||
retVal = re.sub(regex, REFLECTED_VALUE_MARKER, content, re.I)
|
||||
|
||||
if retVal != content:
|
||||
debugMsg = "reflective value found and filtered out"
|
||||
|
|
|
|||
Loading…
Reference in a new issue