2019-05-08 13:47:52 +03:00
|
|
|
#!/usr/bin/env python
|
2015-10-31 18:24:32 +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
|
2015-10-31 18:24:32 +03:00
|
|
|
"""
|
|
|
|
|
2015-10-31 18:33:48 +03:00
|
|
|
import os
|
2015-10-31 18:24:32 +03:00
|
|
|
import re
|
|
|
|
|
2015-10-31 18:33:48 +03:00
|
|
|
from lib.core.common import singleTimeWarnMessage
|
2018-02-08 18:49:16 +03:00
|
|
|
from lib.core.enums import DBMS
|
2015-10-31 18:24:32 +03:00
|
|
|
from lib.core.enums import PRIORITY
|
|
|
|
|
|
|
|
__priority__ = PRIORITY.HIGH
|
|
|
|
|
|
|
|
def dependencies():
|
2018-02-08 18:49:16 +03:00
|
|
|
singleTimeWarnMessage("tamper script '%s' is only meant to be run against %s" % (os.path.basename(__file__).split(".")[0], DBMS.MYSQL))
|
2015-10-31 18:24:32 +03:00
|
|
|
|
|
|
|
def tamper(payload, **kwargs):
|
|
|
|
"""
|
2018-07-31 02:17:11 +03:00
|
|
|
Replaces (MySQL) instances like 'MID(A, B, C)' with 'MID(A FROM B FOR C)' counterpart
|
2015-10-31 18:24:32 +03:00
|
|
|
|
|
|
|
Requirement:
|
|
|
|
* MySQL
|
|
|
|
|
|
|
|
Tested against:
|
|
|
|
* MySQL 5.0 and 5.5
|
|
|
|
|
|
|
|
>>> tamper('MID(VERSION(), 1, 1)')
|
|
|
|
'MID(VERSION() FROM 1 FOR 1)'
|
|
|
|
"""
|
|
|
|
|
|
|
|
retVal = payload
|
|
|
|
|
2015-10-31 18:33:48 +03:00
|
|
|
warnMsg = "you should consider usage of switch '--no-cast' along with "
|
|
|
|
warnMsg += "tamper script '%s'" % os.path.basename(__file__).split(".")[0]
|
|
|
|
singleTimeWarnMessage(warnMsg)
|
|
|
|
|
|
|
|
match = re.search(r"(?i)MID\((.+?)\s*,\s*(\d+)\s*\,\s*(\d+)\s*\)", payload or "")
|
2015-10-31 18:24:32 +03:00
|
|
|
if match:
|
|
|
|
retVal = retVal.replace(match.group(0), "MID(%s FROM %s FOR %s)" % (match.group(1), match.group(2), match.group(3)))
|
|
|
|
|
|
|
|
return retVal
|