incorporating metasploit patch from oliver.kuckertz@mologie.de

This commit is contained in:
Miroslav Stampar 2011-05-23 15:27:10 +00:00
parent 4542d4535f
commit 2b12b18357
2 changed files with 6 additions and 2 deletions

View File

@ -215,6 +215,9 @@ Krzysztof Kotowicz <kkotowicz@gmail.com>
Nicolas Krassas <krasn@ans.gr>
for reporting a bug
Oliver Kuckertz <oliver.kuckertz@mologie.de>
for providing a minor patch
Alex Landa <landa.alex86@gmail.com>
for providing a patch adding support for XML output

View File

@ -398,8 +398,9 @@ class Metasploit:
if not Backend.isOs(OS.WINDOWS):
self.execCmd("chmod +x %s" % self.shellcodeexecRemote, silent=True)
cmd = "%s %s &" % (self.shellcodeexecRemote, self.shellcodeString)
cmd = "%s %s &" % (self.shellcodeexecRemote, self.shellcodeString)
else:
cmd = "\"%s\" %s" % (self.shellcodeexecRemote, self.shellcodeString)
self.execCmd(cmd, silent=True)