mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 05:01:30 +00:00
this was bothering me for some time (POST and/or GET payloads needs to be urlencoded throughly)
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user