mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 04:31:30 +00:00
Fix for an Issue #887
This commit is contained in:
@@ -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 ""
|
||||
|
||||
Reference in New Issue
Block a user