mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-26 11:33:47 +03:00
bug fix (when comment is None this was errornous)
This commit is contained in:
parent
9361e633f4
commit
f46baac70b
|
@ -450,7 +450,7 @@ def checkSqlInjection(place, parameter, value):
|
||||||
injection.os = Backend.setOs(dValue)
|
injection.os = Backend.setOs(dValue)
|
||||||
|
|
||||||
if vector is None and "vector" in test and test.vector is not None:
|
if vector is None and "vector" in test and test.vector is not None:
|
||||||
vector = "%s%s" % (test.vector, comment)
|
vector = "%s%s" % (test.vector, comment or "")
|
||||||
|
|
||||||
injection.data[stype] = AttribDict()
|
injection.data[stype] = AttribDict()
|
||||||
injection.data[stype].title = title
|
injection.data[stype].title = title
|
||||||
|
|
Loading…
Reference in New Issue
Block a user