2016-12-02 00:28:07 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2017-01-02 16:19:18 +03:00
|
|
|
Copyright (c) 2006-2017 sqlmap developers (http://sqlmap.org/)
|
2016-12-02 00:28:07 +03:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
|
|
|
"""
|
|
|
|
|
2017-02-16 18:56:54 +03:00
|
|
|
import re
|
|
|
|
|
2016-12-02 00:28:07 +03:00
|
|
|
from lib.core.common import zeroDepthSearch
|
|
|
|
from lib.core.enums import PRIORITY
|
|
|
|
|
|
|
|
__priority__ = PRIORITY.HIGHEST
|
|
|
|
|
|
|
|
def dependencies():
|
|
|
|
pass
|
|
|
|
|
|
|
|
def tamper(payload, **kwargs):
|
|
|
|
"""
|
|
|
|
Replaces plus ('+') character with function CONCAT()
|
|
|
|
|
|
|
|
Tested against:
|
|
|
|
* Microsoft SQL Server 2012
|
|
|
|
|
|
|
|
Requirements:
|
|
|
|
* Microsoft SQL Server 2012+
|
|
|
|
|
|
|
|
Notes:
|
|
|
|
* Useful in case ('+') character is filtered
|
|
|
|
|
|
|
|
>>> tamper('SELECT CHAR(113)+CHAR(114)+CHAR(115) FROM DUAL')
|
|
|
|
'SELECT CONCAT(CHAR(113),CHAR(114),CHAR(115)) FROM DUAL'
|
|
|
|
"""
|
|
|
|
|
|
|
|
retVal = payload
|
|
|
|
|
|
|
|
if payload:
|
|
|
|
while True:
|
|
|
|
indexes = zeroDepthSearch(retVal, '+')
|
2017-02-16 18:56:54 +03:00
|
|
|
|
2016-12-02 00:28:07 +03:00
|
|
|
if indexes:
|
|
|
|
first, last = 0, 0
|
|
|
|
for i in xrange(1, len(indexes)):
|
|
|
|
if ' ' in retVal[indexes[0]:indexes[i]]:
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
last = i
|
|
|
|
|
|
|
|
start = retVal[:indexes[first]].rfind(' ') + 1
|
|
|
|
end = (retVal[indexes[last] + 1:].find(' ') + indexes[last] + 1) if ' ' in retVal[indexes[last] + 1:] else len(retVal) - 1
|
|
|
|
|
|
|
|
chars = [char for char in retVal]
|
|
|
|
for index in indexes[first:last + 1]:
|
|
|
|
chars[index] = ','
|
|
|
|
|
|
|
|
retVal = "%sCONCAT(%s)%s" % (retVal[:start], ''.join(chars)[start:end], retVal[end:])
|
|
|
|
else:
|
2017-02-16 18:56:54 +03:00
|
|
|
match = re.search(r"\((CHAR\(\d+.+CHAR\(\d+\))\)", retVal)
|
|
|
|
if match:
|
|
|
|
part = match.group(0)
|
|
|
|
indexes = set(zeroDepthSearch(match.group(1), '+'))
|
|
|
|
if not indexes:
|
|
|
|
break
|
|
|
|
chars = [char for char in part]
|
|
|
|
for i in xrange(1, len(chars)):
|
|
|
|
if i - 1 in indexes:
|
|
|
|
chars[i] = ','
|
|
|
|
replacement = "CONCAT%s" % "".join(chars)
|
|
|
|
retVal = retVal.replace(part, replacement)
|
|
|
|
else:
|
|
|
|
break
|
2016-12-02 00:28:07 +03:00
|
|
|
|
|
|
|
return retVal
|