mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Bug fix for a problem reported by a user via ML (--os-shell)
This commit is contained in:
parent
fb65caabd2
commit
006d9d1859
|
@ -7,6 +7,7 @@ See the file 'doc/COPYING' for copying permission
|
||||||
|
|
||||||
from lib.core.agent import agent
|
from lib.core.agent import agent
|
||||||
from lib.core.common import Backend
|
from lib.core.common import Backend
|
||||||
|
from lib.core.common import flattenValue
|
||||||
from lib.core.common import getLimitRange
|
from lib.core.common import getLimitRange
|
||||||
from lib.core.common import getSQLSnippet
|
from lib.core.common import getSQLSnippet
|
||||||
from lib.core.common import hashDBWrite
|
from lib.core.common import hashDBWrite
|
||||||
|
@ -226,12 +227,16 @@ class Xp_cmdshell:
|
||||||
inject.goStacked("DELETE FROM %s" % self.cmdTblName)
|
inject.goStacked("DELETE FROM %s" % self.cmdTblName)
|
||||||
|
|
||||||
if output and isListLike(output) and len(output) > 1:
|
if output and isListLike(output) and len(output) > 1:
|
||||||
if not (output[0] or "").strip():
|
_ = ""
|
||||||
output = output[1:]
|
lines = [_ for _ in flattenValue(output) if _ is not None]
|
||||||
elif not (output[-1] or "").strip():
|
|
||||||
output = output[:-1]
|
|
||||||
|
|
||||||
output = "\n".join(line for line in filter(None, output))
|
for i in xrange(len(lines)):
|
||||||
|
line = lines[i] or ""
|
||||||
|
if line is None or i in (0, len(lines) - 1) and not line.strip():
|
||||||
|
continue
|
||||||
|
_ += "%s\n" % line
|
||||||
|
|
||||||
|
output = _.rstrip('\n')
|
||||||
|
|
||||||
return output
|
return output
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user