diff --git a/lib/core/agent.py b/lib/core/agent.py index 67eb99abc..d21cf2023 100644 --- a/lib/core/agent.py +++ b/lib/core/agent.py @@ -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):