mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
2ac8debea0
Minor bug fixes thanks to previous refactoring too.
25 lines
648 B
Python
25 lines
648 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
|
|
"""
|
|
|
|
from lib.core.common import getIdentifiedDBMS
|
|
from lib.core.datatype import advancedDict
|
|
|
|
class Unescaper(advancedDict):
|
|
def unescape(self, expression, quote=True, dbms=None):
|
|
identifiedDbms = getIdentifiedDBMS()
|
|
|
|
if identifiedDbms is not None:
|
|
return self[identifiedDbms](expression, quote=quote)
|
|
elif dbms is not None:
|
|
return self[dbms](expression, quote=quote)
|
|
else:
|
|
return expression
|
|
|
|
unescaper = Unescaper()
|