mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
13 lines
No EOL
285 B
Python
13 lines
No EOL
285 B
Python
import random
|
|
|
|
|
|
def tamper(payload, **kwargs):
|
|
possible_spaces = [2, 3, 4]
|
|
retval = ""
|
|
encoder = "/**/"
|
|
for char in retval:
|
|
if char == " ":
|
|
retval += encoder * random.choice(possible_spaces)
|
|
else:
|
|
retval += char
|
|
return retval |