2019-03-21 16:00:09 +03:00
|
|
|
#!/usr/bin/env python2
|
2016-09-23 13:33:27 +03:00
|
|
|
|
|
|
|
"""
|
2019-01-05 23:38:52 +03:00
|
|
|
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
|
2017-10-11 15:50:46 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
2016-09-23 13:33:27 +03:00
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
2019-05-02 13:39:16 +03:00
|
|
|
from lib.core.common import getOrds
|
2017-12-11 12:44:47 +03:00
|
|
|
from lib.core.common import isDBMSVersionAtLeast
|
2016-09-23 13:33:27 +03:00
|
|
|
from lib.core.common import randomStr
|
|
|
|
from plugins.generic.syntax import Syntax as GenericSyntax
|
|
|
|
|
|
|
|
class Syntax(GenericSyntax):
|
|
|
|
@staticmethod
|
|
|
|
def escape(expression, quote=True):
|
|
|
|
"""
|
2017-12-11 15:01:37 +03:00
|
|
|
>>> from lib.core.common import Backend
|
|
|
|
>>> Backend.setVersion('12.10')
|
|
|
|
['12.10']
|
2019-05-02 13:39:16 +03:00
|
|
|
>>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == "SELECT CHR(97)||CHR(98)||CHR(99)||CHR(100)||CHR(101)||CHR(102)||CHR(103)||CHR(104) FROM foobar"
|
|
|
|
True
|
2016-09-23 13:33:27 +03:00
|
|
|
"""
|
|
|
|
|
|
|
|
def escaper(value):
|
2019-05-02 13:39:16 +03:00
|
|
|
return "||".join("CHR(%d)" % _ for _ in getOrds(value))
|
2016-09-23 13:33:27 +03:00
|
|
|
|
2017-12-11 12:44:47 +03:00
|
|
|
retVal = expression
|
2016-09-23 13:33:27 +03:00
|
|
|
|
2017-12-11 12:44:47 +03:00
|
|
|
if isDBMSVersionAtLeast("11.70"):
|
|
|
|
excluded = {}
|
|
|
|
for _ in re.findall(r"DBINFO\([^)]+\)", expression):
|
|
|
|
excluded[_] = randomStr()
|
|
|
|
expression = expression.replace(_, excluded[_])
|
2016-09-23 13:33:27 +03:00
|
|
|
|
2017-12-11 12:44:47 +03:00
|
|
|
retVal = Syntax._escape(expression, quote, escaper)
|
|
|
|
|
|
|
|
for _ in excluded.items():
|
|
|
|
retVal = retVal.replace(_[1], _[0])
|
2016-09-23 13:33:27 +03:00
|
|
|
|
2018-03-13 15:45:42 +03:00
|
|
|
return retVal
|