this was bothering me for some time (POST and/or GET payloads needs to be urlencoded throughly)

This commit is contained in:
Miroslav Stampar
2011-03-11 19:57:44 +00:00
parent d8a76ebe34
commit 5eae525010
2 changed files with 22 additions and 17 deletions

View File

@@ -414,7 +414,12 @@ class Connect:
if place == PLACE.COOKIE and conf.cookieUrlencode:
value = agent.removePayloadDelimiters(value)
value = urlEncodeCookieValues(value)
elif place:
if place in (PLACE.GET, PLACE.POST):
payload = urlencode(payload, None, True, True)
value = agent.replacePayload(value, payload)
value = agent.removePayloadDelimiters(value)
if conf.checkPayload: