2010-03-23 01:57:57 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2012-07-12 21:38:03 +04:00
|
|
|
Copyright (c) 2006-2012 sqlmap developers (http://sqlmap.org/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2010-03-23 01:57:57 +03:00
|
|
|
"""
|
|
|
|
|
2012-12-06 17:14:19 +04:00
|
|
|
from lib.core.exception import SqlmapUndefinedMethod
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
class Syntax:
|
|
|
|
"""
|
|
|
|
This class defines generic syntax functionalities for plugins.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def unescape(expression, quote=True):
|
2011-04-30 17:20:05 +04:00
|
|
|
errMsg = "'unescape' method must be defined "
|
2010-03-23 01:57:57 +03:00
|
|
|
errMsg += "into the specific DBMS plugin"
|
2013-01-04 02:20:55 +04:00
|
|
|
raise SqlmapUndefinedMethod(errMsg)
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def escape(expression):
|
2011-04-30 17:20:05 +04:00
|
|
|
errMsg = "'escape' method must be defined "
|
2010-03-23 01:57:57 +03:00
|
|
|
errMsg += "into the specific DBMS plugin"
|
2013-01-04 02:20:55 +04:00
|
|
|
raise SqlmapUndefinedMethod(errMsg)
|