Silent bug fix

This commit is contained in:
Miroslav Stampar
2020-11-09 23:02:48 +01:00
parent c243c5fe0d
commit 4d2b890a0a
5 changed files with 5 additions and 5 deletions

View File

@@ -31,4 +31,4 @@ def tamper(payload, **kwargs):
'1DUNION ALL SELECT'
"""
return re.sub(r"(\d+)\s+(UNION )", r"\g<1>D\g<2>", payload, re.I) if payload else payload
return re.sub(r"(?i)(\d+)\s+(UNION )", r"\g<1>D\g<2>", payload) if payload else payload