From 6191a7f26f1788f5c3da008c3ad9839a0ed71c4a Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Sun, 6 Feb 2011 15:53:43 +0000 Subject: [PATCH] Major fix for a silent bug --- lib/core/agent.py | 3 +++ 1 file changed, 3 insertions(+) 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):