2008-10-15 19:38:22 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2012-01-11 18:59:46 +04:00
|
|
|
Copyright (c) 2006-2012 sqlmap developers (http://www.sqlmap.org/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2008-10-15 19:38:22 +04:00
|
|
|
"""
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
from lib.core.common import Backend
|
2011-07-08 10:02:31 +04:00
|
|
|
from lib.core.datatype import AttribDict
|
2011-02-07 01:32:44 +03:00
|
|
|
from lib.core.settings import EXCLUDE_UNESCAPE
|
2010-12-09 19:49:02 +03:00
|
|
|
|
2011-07-08 10:02:31 +04:00
|
|
|
class Unescaper(AttribDict):
|
2011-01-12 02:47:32 +03:00
|
|
|
def unescape(self, expression, quote=True, dbms=None):
|
2011-02-07 01:32:44 +03:00
|
|
|
if expression is None:
|
|
|
|
return expression
|
|
|
|
|
|
|
|
for exclude in EXCLUDE_UNESCAPE:
|
|
|
|
if exclude in expression:
|
|
|
|
return expression
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
identifiedDbms = Backend.getIdentifiedDbms()
|
2011-01-13 20:36:54 +03:00
|
|
|
|
2011-02-07 01:32:44 +03:00
|
|
|
if dbms is not None:
|
2011-01-12 02:56:04 +03:00
|
|
|
return self[dbms](expression, quote=quote)
|
2011-01-21 00:55:13 +03:00
|
|
|
elif identifiedDbms is not None:
|
|
|
|
return self[identifiedDbms](expression, quote=quote)
|
2011-01-07 18:41:09 +03:00
|
|
|
else:
|
|
|
|
return expression
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
unescaper = Unescaper()
|