Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acc650d commit 153aa10Copy full SHA for 153aa10
1 file changed
lib/controller/controller.py
@@ -144,7 +144,7 @@ def _formatInjection(inj):
144
vector = "%s%s" % (vector, comment)
145
data += " Type: %s\n" % PAYLOAD.SQLINJECTION[stype]
146
data += " Title: %s\n" % title
147
- data += " Payload: %s\n" % payload
+ data += " Payload: %s\n" % urldecode(payload, unsafe="&")
148
data += " Vector: %s\n\n" % vector if conf.verbose > 1 else "\n"
149
150
return data
0 commit comments