mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-23 01:56:36 +03:00
21 lines
457 B
Python
21 lines
457 B
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
$Id$
|
|
|
|
Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
|
|
See the file 'doc/COPYING' for copying permission
|
|
"""
|
|
|
|
class Unescaper:
|
|
def __init__(self):
|
|
self.__unescaper = None
|
|
|
|
def setUnescape(self, unescapeFunction):
|
|
self.__unescaper = unescapeFunction
|
|
|
|
def unescape(self, expression, quote=True):
|
|
return self.__unescaper(expression, quote=quote)
|
|
|
|
unescaper = Unescaper()
|