Major fix for a silent bug

This commit is contained in:
Bernardo Damele 2011-02-06 15:53:43 +00:00
parent 1bc2ee2fbf
commit 6191a7f26f

View File

@ -29,6 +29,7 @@ from lib.core.exception import sqlmapNoneDataException
from lib.core.settings import FROM_TABLE
from lib.core.settings import PAYLOAD_DELIMITER
from lib.core.settings import URI_INJECTION_MARK_CHAR
from lib.core.unescaper import unescaper
class Agent:
"""
@ -240,6 +241,8 @@ class Agent:
errMsg += "knowledge of underlying DBMS"
raise sqlmapNoneDataException, errMsg
payload = unescaper.unescape(payload)
return payload
def getComment(self, reqObj):