mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-02-06 15:39:37 +03:00
19 lines
382 B
Python
19 lines
382 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from lib.core.enums import PRIORITY
|
|
__priority__ = PRIORITY.NORMAL
|
|
|
|
def dependencies():
|
|
pass
|
|
|
|
def tamper(payload, **kwargs):
|
|
line = payload.encode("hex")
|
|
n = 2
|
|
groups = [line[i:i+n] for i in range(0, len(line), n)]
|
|
full = ''
|
|
for x in groups:
|
|
full = full + "\u00" + x
|
|
retVal = full
|
|
return retVal
|