mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-08 13:41:29 +00:00
Patch for an Issue #1285
This commit is contained in:
@@ -80,6 +80,7 @@ def _setRequestParams():
|
||||
return
|
||||
|
||||
testableParameters = False
|
||||
skipHeaders = False
|
||||
|
||||
# Perform checks on GET parameters
|
||||
if conf.parameters.get(PLACE.GET):
|
||||
@@ -123,7 +124,13 @@ def _setRequestParams():
|
||||
else:
|
||||
kb.processUserMarks = not test or test[0] not in ("n", "N")
|
||||
|
||||
if kb.processUserMarks and "=%s" % CUSTOM_INJECTION_MARK_CHAR in conf.data:
|
||||
if kb.processUserMarks:
|
||||
skipHeaders = True
|
||||
|
||||
conf.parameters.clear()
|
||||
conf.paramDict.clear()
|
||||
|
||||
if "=%s" % CUSTOM_INJECTION_MARK_CHAR in conf.data:
|
||||
warnMsg = "it seems that you've provided empty parameter value(s) "
|
||||
warnMsg += "for testing. Please, always use only valid parameter values "
|
||||
warnMsg += "so sqlmap could be able to run properly"
|
||||
@@ -241,7 +248,13 @@ def _setRequestParams():
|
||||
else:
|
||||
kb.processUserMarks = not test or test[0] not in ("n", "N")
|
||||
|
||||
if kb.processUserMarks and "=%s" % CUSTOM_INJECTION_MARK_CHAR in _:
|
||||
if kb.processUserMarks:
|
||||
skipHeaders = True
|
||||
|
||||
conf.parameters.clear()
|
||||
conf.paramDict.clear()
|
||||
|
||||
if "=%s" % CUSTOM_INJECTION_MARK_CHAR in _:
|
||||
warnMsg = "it seems that you've provided empty parameter value(s) "
|
||||
warnMsg += "for testing. Please, always use only valid parameter values "
|
||||
warnMsg += "so sqlmap could be able to run properly"
|
||||
@@ -304,6 +317,7 @@ def _setRequestParams():
|
||||
if conf.get(item):
|
||||
conf[item] = conf[item].replace(CUSTOM_INJECTION_MARK_CHAR, "")
|
||||
|
||||
if not skipHeaders:
|
||||
# Perform checks on Cookie parameters
|
||||
if conf.cookie:
|
||||
conf.parameters[PLACE.COOKIE] = conf.cookie
|
||||
|
||||
Reference in New Issue
Block a user