mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
9 lines
168 B
Python
9 lines
168 B
Python
|
|
def tamper(payload, **kwargs):
|
||
|
|
i = 0
|
||
|
|
retval = ""
|
||
|
|
|
||
|
|
while i < len(payload):
|
||
|
|
retval += "%u{}".format(ord(payload[i]))
|
||
|
|
i += 1
|
||
|
|
return retval
|