sqlmap/plugins/dbms/firebird/syntax.py

26 lines
659 B
Python
Raw Normal View History

#!/usr/bin/env python
"""
2013-01-18 18:07:51 +04:00
Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
2010-10-15 03:18:29 +04:00
See the file 'doc/COPYING' for copying permission
"""
2010-12-10 13:54:17 +03:00
from lib.core.common import isDBMSVersionAtLeast
from plugins.generic.syntax import Syntax as GenericSyntax
class Syntax(GenericSyntax):
def __init__(self):
GenericSyntax.__init__(self)
@staticmethod
2013-01-18 18:40:37 +04:00
def escape(expression, quote=True):
def escaper(value):
return "||".join("ASCII_CHAR(%d)" % ord(_) for _ in value)
retVal = expression
if isDBMSVersionAtLeast('2.1'):
retVal = Syntax._escape(expression, quote, escaper)
2013-01-21 01:47:26 +04:00
return retVal