Minor cosmetic update

This commit is contained in:
Miroslav Stampar 2013-04-03 19:00:54 +02:00
parent acc650d3dc
commit 153aa10b77

View File

@ -144,7 +144,7 @@ def _formatInjection(inj):
vector = "%s%s" % (vector, comment) vector = "%s%s" % (vector, comment)
data += " Type: %s\n" % PAYLOAD.SQLINJECTION[stype] data += " Type: %s\n" % PAYLOAD.SQLINJECTION[stype]
data += " Title: %s\n" % title data += " Title: %s\n" % title
data += " Payload: %s\n" % payload data += " Payload: %s\n" % urldecode(payload, unsafe="&")
data += " Vector: %s\n\n" % vector if conf.verbose > 1 else "\n" data += " Vector: %s\n\n" % vector if conf.verbose > 1 else "\n"
return data return data