sqlmap/plugins/dbms/sqlite/syntax.py

31 lines
857 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
"""
2012-07-21 11:15:54 +04:00
import binascii
import re
2010-12-10 13:56:55 +03:00
from lib.core.common import isDBMSVersionAtLeast
from lib.core.exception import SqlmapSyntaxException
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):
2012-07-21 11:15:54 +04:00
unescaped = expression
2010-12-10 13:56:55 +03:00
if isDBMSVersionAtLeast('3'):
if quote:
2012-07-21 11:15:54 +04:00
for item in re.findall(r"'[^']+'", expression, re.S):
unescaped = unescaped.replace(item, "X'%s'" % binascii.hexlify(item.strip("'")))
2010-12-10 13:56:55 +03:00
else:
2012-07-21 11:15:54 +04:00
unescaped = "X'%s'" % binascii.hexlify(expression)
2012-07-21 11:15:54 +04:00
return unescaped