2013-02-14 15:32:17 +04:00
|
|
|
#!/usr/bin/env python
|
2012-12-26 20:12:17 +04:00
|
|
|
|
|
|
|
"""
|
2014-01-13 21:24:49 +04:00
|
|
|
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
|
2012-12-26 20:12:17 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
|
|
|
"""
|
|
|
|
|
|
|
|
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):
|
2013-03-11 17:58:05 +04: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'
|
|
|
|
"""
|
|
|
|
|
2013-01-20 16:45:58 +04:00
|
|
|
def escaper(value):
|
|
|
|
return "||".join("CHR(%d)" % ord(_) for _ in value)
|
2013-01-18 01:58:15 +04:00
|
|
|
|
2013-01-20 16:45:58 +04:00
|
|
|
return Syntax._escape(expression, quote, escaper)
|