2008-10-15 19:38:22 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2008-10-15 19:56:32 +04:00
|
|
|
$Id$
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2010-10-14 18:41:14 +04:00
|
|
|
Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2008-10-15 19:38:22 +04:00
|
|
|
"""
|
|
|
|
|
|
|
|
class Unescaper:
|
|
|
|
def __init__(self):
|
|
|
|
self.__unescaper = None
|
|
|
|
|
|
|
|
def setUnescape(self, unescapeFunction):
|
|
|
|
self.__unescaper = unescapeFunction
|
|
|
|
|
2008-11-02 21:17:12 +03:00
|
|
|
def unescape(self, expression, quote=True):
|
|
|
|
return self.__unescaper(expression, quote=quote)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
unescaper = Unescaper()
|