From bf56f8c63c1a451526c9684959a3fb27149ed928 Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Fri, 15 Oct 2010 12:46:41 +0000 Subject: [PATCH] Cosmetic fix --- lib/controller/checks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/controller/checks.py b/lib/controller/checks.py index 7d3969260..5767fdba8 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -340,14 +340,14 @@ def checkNullConnection(): if not page and 'Content-Length' in headers: kb.nullConnection = "HEAD" - infoMsg = "null connection is supported with HEAD header" + infoMsg = "NULL connection is supported with HEAD header" logger.info(infoMsg) else: page, headers = Request.getPage(auxHeaders={"Range":"bytes=-1"}) if page and len(page) == 1 and 'Content-Range' in headers: kb.nullConnection = "Range" - infoMsg = "null connection is supported with GET header " + infoMsg = "NULL connection is supported with GET header " infoMsg += "'%s'" % kb.nullConnection logger.info(infoMsg) except sqlmapConnectionException, errMsg: