sqlmap/plugins/dbms/mysql/syntax.py

28 lines
793 B
Python
Raw Normal View History

#!/usr/bin/env python2
"""
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
"""
import binascii
2012-01-02 02:55:32 +04:00
from lib.core.convert import utf8encode
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):
retVal = None
try:
retVal = "0x%s" % binascii.hexlify(value.strip("'"))
except UnicodeEncodeError:
retVal = "CONVERT(0x%s USING utf8)" % "".join("%.2x" % ord(_) for _ in utf8encode(value.strip("'")))
return retVal
return Syntax._escape(expression, quote, escaper)