sqlmap/tamper/hex2char.py

50 lines
1.3 KiB
Python
Raw Permalink Normal View History

2019-05-08 13:47:52 +03:00
#!/usr/bin/env python
2018-05-30 16:48:16 +03:00
"""
2024-01-04 01:11:52 +03:00
Copyright (c) 2006-2024 sqlmap developers (https://sqlmap.org/)
2018-05-30 16:48:16 +03:00
See the file 'LICENSE' for copying permission
"""
2020-09-09 15:07:13 +03:00
import os
2018-05-30 16:48:16 +03:00
import re
2020-08-04 11:34:18 +03:00
from lib.core.common import singleTimeWarnMessage
2019-05-03 14:20:15 +03:00
from lib.core.convert import decodeHex
from lib.core.convert import getOrds
2020-08-04 11:34:18 +03:00
from lib.core.enums import DBMS
2018-05-30 16:48:16 +03:00
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.NORMAL
def dependencies():
2020-08-04 11:34:18 +03:00
singleTimeWarnMessage("tamper script '%s' is only meant to be run against %s" % (os.path.basename(__file__).split(".")[0], DBMS.MYSQL))
2018-05-30 16:48:16 +03:00
def tamper(payload, **kwargs):
"""
Replaces each (MySQL) 0x<hex> encoded string with equivalent CONCAT(CHAR(),...) counterpart
2018-07-31 01:20:52 +03:00
Requirement:
* MySQL
2018-05-30 16:48:16 +03:00
Tested against:
* MySQL 4, 5.0 and 5.5
Notes:
* Useful in cases when web application does the upper casing
>>> tamper('SELECT 0xdeadbeef')
'SELECT CONCAT(CHAR(222),CHAR(173),CHAR(190),CHAR(239))'
"""
retVal = payload
if payload:
for match in re.finditer(r"\b0x([0-9a-f]+)\b", retVal):
if len(match.group(1)) > 2:
2019-05-02 17:54:54 +03:00
result = "CONCAT(%s)" % ','.join("CHAR(%d)" % _ for _ in getOrds(decodeHex(match.group(1))))
2018-05-30 16:48:16 +03:00
else:
2019-05-02 01:45:44 +03:00
result = "CHAR(%d)" % ord(decodeHex(match.group(1)))
2018-05-30 16:48:16 +03:00
retVal = retVal.replace(match.group(0), result)
return retVal