2019-05-08 13:47:52 +03:00
|
|
|
#!/usr/bin/env python
|
2010-03-24 00:26:45 +03:00
|
|
|
|
|
|
|
"""
|
2020-01-01 15:25:15 +03:00
|
|
|
Copyright (c) 2006-2020 sqlmap developers (http://sqlmap.org/)
|
2017-10-11 15:50:46 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
2010-03-24 00:26:45 +03:00
|
|
|
"""
|
|
|
|
|
2012-07-21 11:15:54 +04:00
|
|
|
import binascii
|
|
|
|
|
2010-12-10 13:56:55 +03:00
|
|
|
from lib.core.common import isDBMSVersionAtLeast
|
2019-05-03 14:20:15 +03:00
|
|
|
from lib.core.convert import getBytes
|
2019-05-06 01:54:21 +03:00
|
|
|
from lib.core.convert import getUnicode
|
2010-03-24 00:26:45 +03:00
|
|
|
from plugins.generic.syntax import Syntax as GenericSyntax
|
|
|
|
|
|
|
|
class Syntax(GenericSyntax):
|
|
|
|
@staticmethod
|
2013-01-18 18:40:37 +04:00
|
|
|
def escape(expression, quote=True):
|
2013-03-11 17:58:05 +04:00
|
|
|
"""
|
2016-12-20 01:47:39 +03:00
|
|
|
>>> from lib.core.common import Backend
|
2013-03-11 17:58:05 +04:00
|
|
|
>>> Backend.setVersion('2')
|
|
|
|
['2']
|
2019-05-02 13:39:16 +03:00
|
|
|
>>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == "SELECT 'abcdefgh' FROM foobar"
|
|
|
|
True
|
2013-03-11 17:58:05 +04:00
|
|
|
>>> Backend.setVersion('3')
|
|
|
|
['3']
|
2019-05-02 13:39:16 +03:00
|
|
|
>>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == "SELECT CAST(X'6162636465666768' AS TEXT) FROM foobar"
|
|
|
|
True
|
2013-03-11 17:58:05 +04:00
|
|
|
"""
|
|
|
|
|
2013-01-20 16:45:58 +04:00
|
|
|
def escaper(value):
|
2013-02-25 17:07:20 +04:00
|
|
|
# Reference: http://stackoverflow.com/questions/3444335/how-do-i-quote-a-utf-8-string-literal-in-sqlite3
|
2019-05-02 13:39:16 +03:00
|
|
|
return "CAST(X'%s' AS TEXT)" % getUnicode(binascii.hexlify(getBytes(value)))
|
2012-07-21 11:15:54 +04:00
|
|
|
|
2013-01-21 01:16:34 +04:00
|
|
|
retVal = expression
|
|
|
|
|
|
|
|
if isDBMSVersionAtLeast('3'):
|
|
|
|
retVal = Syntax._escape(expression, quote, escaper)
|
|
|
|
|
2013-01-21 01:47:26 +04:00
|
|
|
return retVal
|