mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
minor update for SOAP payloads
This commit is contained in:
@@ -456,6 +456,11 @@ class Connect:
|
||||
# functions therefore we need to use % as a safe char
|
||||
payload = urlencode(payload, "%", False, True)
|
||||
value = agent.replacePayload(value, payload)
|
||||
elif place == PLACE.SOAP:
|
||||
# payloads in SOAP should have chars > and < replaced
|
||||
# with their HTML encoded counterparts
|
||||
payload = payload.replace('>', '>').replace('<', '<')
|
||||
value = agent.replacePayload(value, payload)
|
||||
|
||||
value = agent.removePayloadDelimiters(value)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user