mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-01-09 16:19:07 +00:00
Fix for an Issue #137
This commit is contained in:
@@ -1555,7 +1555,6 @@ def __setKnowledgeBaseAttributes(flushAll=True):
|
||||
kb.threadException = False
|
||||
kb.timeValidCharsRun = 0
|
||||
kb.uChar = NULL
|
||||
kb.unescape = True
|
||||
kb.unionDuplicates = False
|
||||
kb.xpCmdshellAvailable = False
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ from lib.core.settings import EXCLUDE_UNESCAPE
|
||||
|
||||
class Unescaper(AttribDict):
|
||||
def unescape(self, expression, quote=True, dbms=None):
|
||||
if not kb.unescape or conf.noUnescape:
|
||||
if conf.noUnescape:
|
||||
return expression
|
||||
|
||||
if expression is None:
|
||||
|
||||
Reference in New Issue
Block a user