MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / removePayloadDelimiters

Method removePayloadDelimiters

lib/core/agent.py:1226–1231  ·  view source on GitHub ↗

Removes payload delimiters from inside the input string

(self, value)

Source from the content-addressed store, hash-verified

1224 return "%s%s%s" % (PAYLOAD_DELIMITER, value, PAYLOAD_DELIMITER) if value else value
1225
1226 def removePayloadDelimiters(self, value):
1227 """
1228 Removes payload delimiters from inside the input string
1229 """
1230
1231 return value.replace(PAYLOAD_DELIMITER, "") if value else value
1232
1233 def extractPayload(self, value):
1234 """

Callers 3

checkSqlInjectionFunction · 0.80
queryPageMethod · 0.80
unionTestFunction · 0.80

Calls 1

replaceMethod · 0.45

Tested by 1

unionTestFunction · 0.64