added some debug messages

This commit is contained in:
Miroslav Stampar 2010-11-04 09:18:32 +00:00
parent d5fcc9d8b5
commit efe75aa8a3

View File

@ -153,8 +153,11 @@ def checkDynamicContent(firstPage, secondPage):
This function checks if the provided pages have dynamic content. If they This function checks if the provided pages have dynamic content. If they
are dynamic, proper markings will be made. are dynamic, proper markings will be made.
""" """
if kb.nullConnection: if kb.nullConnection:
debugMsg = "dynamic content checking skipped "
debugMsg += "because NULL connection used"
logger.debug(debugMsg)
return return
infoMsg = "searching for dynamic content" infoMsg = "searching for dynamic content"
@ -248,7 +251,13 @@ def checkStability():
if test: if test:
conf.string = test conf.string = test
kb.nullConnection = None
if kb.nullConnection:
debugMsg = "turning off NULL connection "
debugMsg += "support because of string checking"
logger.debug(debugMsg)
kb.nullConnection = None
else: else:
raise sqlmapSilentQuitException raise sqlmapSilentQuitException
@ -258,7 +267,13 @@ def checkStability():
if test: if test:
conf.regex = test conf.regex = test
kb.nullConnection = None
if kb.nullConnection:
debugMsg = "turning off NULL connection "
debugMsg += "support because of regex checking"
logger.debug(debugMsg)
kb.nullConnection = None
else: else:
raise sqlmapSilentQuitException raise sqlmapSilentQuitException
else: else: