mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
7 lines
150 B
Python
7 lines
150 B
Python
|
|
def tamper(payload, **kwargs):
|
||
|
|
retval = hex(hash(payload))
|
||
|
|
if "-" in str(retval):
|
||
|
|
return retval[1:-1]
|
||
|
|
else:
|
||
|
|
return retval
|