mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-27 03:53:48 +03:00
17 lines
439 B
Python
17 lines
439 B
Python
#!/usr/bin/env python2
|
|
|
|
"""
|
|
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
|
|
See the file 'LICENSE' for copying permission
|
|
"""
|
|
|
|
from plugins.generic.syntax import Syntax as GenericSyntax
|
|
|
|
class Syntax(GenericSyntax):
|
|
@staticmethod
|
|
def escape(expression, quote=True):
|
|
def escaper(value):
|
|
return "&".join("CHR(%d)" % ord(_) for _ in value)
|
|
|
|
return Syntax._escape(expression, quote, escaper)
|