Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29bdcf0 commit 12b9939Copy full SHA for 12b9939
1 file changed
tamper/equaltolike.py
@@ -38,7 +38,6 @@ def tamper(payload, **kwargs):
38
retVal = payload
39
40
if payload:
41
- for regex, subst in ((r"\s+=\s+", " LIKE "), (r"\s+=", " LIKE"), (r"=\s+", "LIKE ")):
42
- retVal = re.sub(regex, subst, retVal)
+ retVal = re.sub(r"\s*=\s*", " LIKE ", retVal)
43
44
return retVal
0 commit comments