We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29bdcf0 commit 12b9939Copy full SHA for 12b9939
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