mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
new tamper script, multiple space to comment
This commit is contained in:
parent
bc053b5dcf
commit
274b3d7745
1 changed files with 13 additions and 0 deletions
|
|
@ -0,0 +1,13 @@
|
|||
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
|
||||
Loading…
Reference in a new issue