We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4b5133 commit 949fcb7Copy full SHA for 949fcb7
1 file changed
lib/controller/controller.py
@@ -138,7 +138,7 @@ def __formatInjection(inj):
138
title = title.replace("columns", "column")
139
elif comment:
140
vector = "%s%s" % (vector, comment)
141
- data += " Type: %s\n" % PAYLOAD.SQLINJECTION[stype]
+ data += " Type: %s\n" % (PAYLOAD.SQLINJECTION[stype] if "inline" not in title else "inline query")
142
data += " Title: %s\n" % title
143
data += " Payload: %s\n" % agent.adjustLateValues(sdata.payload)
144
data += " Vector: %s\n\n" % vector if conf.verbose > 1 else "\n"
0 commit comments