mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Fix for an Issue #887
This commit is contained in:
parent
5b0d74146e
commit
0feb379b47
|
@ -228,7 +228,7 @@ class Xp_cmdshell:
|
|||
|
||||
if output and isListLike(output) and len(output) > 1:
|
||||
_ = ""
|
||||
lines = [_ for _ in flattenValue(output) if _ is not None]
|
||||
lines = [line for line in flattenValue(output) if line is not None]
|
||||
|
||||
for i in xrange(len(lines)):
|
||||
line = lines[i] or ""
|
||||
|
|
Loading…
Reference in New Issue
Block a user