mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Fixes #5806
This commit is contained in:
parent
935afc6217
commit
4b2baa32c3
3 changed files with 4 additions and 4 deletions
|
|
@ -65,7 +65,7 @@ class Custom(object):
|
|||
|
||||
output = inject.getValue(query, fromUser=True)
|
||||
|
||||
if "SELECT" in sqlType and isListLike(output):
|
||||
if sqlType and "SELECT" in sqlType and isListLike(output):
|
||||
for i in xrange(len(output)):
|
||||
if isListLike(output[i]):
|
||||
output[i] = joinValue(output[i])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue