2019-05-08 13:47:52 +03:00
|
|
|
#!/usr/bin/env python
|
2017-10-04 13:22:31 +03:00
|
|
|
|
|
|
|
"""
|
2024-01-04 01:11:52 +03:00
|
|
|
Copyright (c) 2006-2024 sqlmap developers (https://sqlmap.org/)
|
2017-10-11 15:50:46 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
2017-10-04 13:22:31 +03:00
|
|
|
"""
|
|
|
|
|
|
|
|
import string
|
|
|
|
|
|
|
|
from lib.core.enums import PRIORITY
|
|
|
|
|
2018-02-08 18:49:16 +03:00
|
|
|
__priority__ = PRIORITY.NORMAL
|
2017-10-04 13:22:31 +03:00
|
|
|
|
|
|
|
def tamper(payload, **kwargs):
|
|
|
|
"""
|
2018-07-31 03:18:33 +03:00
|
|
|
Unicode-escapes non-encoded characters in a given payload (not processing already encoded) (e.g. SELECT -> \u0053\u0045\u004C\u0045\u0043\u0054)
|
2017-10-04 13:22:31 +03:00
|
|
|
|
|
|
|
Notes:
|
|
|
|
* Useful to bypass weak filtering and/or WAFs in JSON contexes
|
|
|
|
|
2017-10-04 15:02:47 +03:00
|
|
|
>>> tamper('SELECT FIELD FROM TABLE')
|
|
|
|
'\\\\u0053\\\\u0045\\\\u004C\\\\u0045\\\\u0043\\\\u0054\\\\u0020\\\\u0046\\\\u0049\\\\u0045\\\\u004C\\\\u0044\\\\u0020\\\\u0046\\\\u0052\\\\u004F\\\\u004D\\\\u0020\\\\u0054\\\\u0041\\\\u0042\\\\u004C\\\\u0045'
|
2017-10-04 13:22:31 +03:00
|
|
|
"""
|
|
|
|
|
|
|
|
retVal = payload
|
|
|
|
|
|
|
|
if payload:
|
|
|
|
retVal = ""
|
|
|
|
i = 0
|
|
|
|
|
|
|
|
while i < len(payload):
|
|
|
|
if payload[i] == '%' and (i < len(payload) - 2) and payload[i + 1:i + 2] in string.hexdigits and payload[i + 2:i + 3] in string.hexdigits:
|
|
|
|
retVal += "\\u00%s" % payload[i + 1:i + 3]
|
|
|
|
i += 3
|
|
|
|
else:
|
|
|
|
retVal += '\\u%.4X' % ord(payload[i])
|
|
|
|
i += 1
|
|
|
|
|
|
|
|
return retVal
|