sqlmap/plugins/dbms/informix/syntax.py

43 lines
1.2 KiB
Python
Raw Permalink Normal View History

2019-05-08 13:47:52 +03:00
#!/usr/bin/env python
"""
2022-01-03 13:30:34 +03:00
Copyright (c) 2006-2022 sqlmap developers (https://sqlmap.org/)
2017-10-11 15:50:46 +03:00
See the file 'LICENSE' for copying permission
"""
import re
2017-12-11 12:44:47 +03:00
from lib.core.common import isDBMSVersionAtLeast
from lib.core.common import randomStr
2019-05-03 14:20:15 +03:00
from lib.core.convert import getOrds
from plugins.generic.syntax import Syntax as GenericSyntax
class Syntax(GenericSyntax):
@staticmethod
def escape(expression, quote=True):
"""
>>> 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
"""
def escaper(value):
2019-05-02 13:39:16 +03:00
return "||".join("CHR(%d)" % _ for _ in getOrds(value))
2017-12-11 12:44:47 +03:00
retVal = expression
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[_])
2017-12-11 12:44:47 +03:00
retVal = Syntax._escape(expression, quote, escaper)
for _ in excluded.items():
retVal = retVal.replace(_[1], _[0])
return retVal