Minor update of random tamper scripts

This commit is contained in:
Miroslav Štampar 2026-06-04 19:52:38 +02:00
parent ae851d9511
commit 06b74f9390
4 changed files with 6 additions and 6 deletions

View file

@ -45,6 +45,6 @@ def tamper(payload, **kwargs):
index = randomRange(1, len(word) - 1)
_ = word[:index] + "/**/" + word[index:]
retVal = retVal.replace(word, _)
retVal = re.sub(r"\b%s\b" % word, _, retVal)
return retVal