mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Minor refactoring
This commit is contained in:
parent
29bdcf0e65
commit
12b9939baa
1 changed files with 1 additions and 2 deletions
|
|
@ -38,7 +38,6 @@ def tamper(payload, **kwargs):
|
|||
retVal = payload
|
||||
|
||||
if payload:
|
||||
for regex, subst in ((r"\s+=\s+", " LIKE "), (r"\s+=", " LIKE"), (r"=\s+", "LIKE ")):
|
||||
retVal = re.sub(regex, subst, retVal)
|
||||
retVal = re.sub(r"\s*=\s*", " LIKE ", retVal)
|
||||
|
||||
return retVal
|
||||
|
|
|
|||
Loading…
Reference in a new issue