fix for a bug reported by m4l1c3 (AttributeError: 'NoneType' object has no attribute 'replace')

This commit is contained in:
Miroslav Stampar 2011-04-07 13:57:07 +00:00
parent 02eeeccd33
commit ae4ea0af45
2 changed files with 7 additions and 6 deletions

View File

@ -50,6 +50,7 @@ from lib.core.convert import htmlunescape
from lib.core.convert import urldecode
from lib.core.convert import urlencode
from lib.core.enums import DBMS
from lib.core.enums import HTTPHEADER
from lib.core.enums import PLACE
from lib.core.enums import PAYLOAD
from lib.core.enums import SORTORDER
@ -1012,6 +1013,12 @@ def parseTargetUrl():
conf.url = "%s://%s:%d%s" % (conf.scheme, conf.hostname, conf.port, conf.path)
conf.url = conf.url.replace(URI_QUESTION_MARKER, '?')
if not conf.referer and conf.level >= 3:
debugMsg = "setting the HTTP Referer header to the target url"
logger.debug(debugMsg)
conf.httpHeaders = filter(lambda (key, value): key != HTTPHEADER.REFERER, conf.httpHeaders)
conf.httpHeaders.append((HTTPHEADER.REFERER, conf.url))
def expandAsteriskForColumns(expression):
# If the user provided an asterisk rather than the column(s)
# name, sqlmap will retrieve the columns itself and reprocess

View File

@ -1079,12 +1079,6 @@ def __setHTTPReferer():
conf.httpHeaders.append((HTTPHEADER.REFERER, conf.referer))
elif conf.level >= 3:
debugMsg = "setting the default HTTP Referer header"
logger.debug(debugMsg)
conf.httpHeaders.append((HTTPHEADER.REFERER, conf.url))
def __setHTTPCookies():
"""
Set the HTTP Cookie header