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

Method addPayloadDelimiters

lib/core/agent.py:1219–1224  ·  view source on GitHub ↗

Adds payload delimiters around the input string

(self, value)

Source from the content-addressed store, hash-verified

1217 return caseExpression
1218
1219 def addPayloadDelimiters(self, value):
1220 """
1221 Adds payload delimiters around the input string
1222 """
1223
1224 return "%s%s%s" % (PAYLOAD_DELIMITER, value, PAYLOAD_DELIMITER) if value else value
1225
1226 def removePayloadDelimiters(self, value):
1227 """

Callers 2

payloadMethod · 0.95
checkWafFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected