(self, exitfunc)
| 423 | self._msfCliProc = execute(self._cliCmd, shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=False) |
| 424 | |
| 425 | def _runMsfCli(self, exitfunc): |
| 426 | self._forgeMsfCliCmd(exitfunc) |
| 427 | |
| 428 | infoMsg = "running Metasploit Framework command line " |
| 429 | infoMsg += "interface locally, please wait.." |
| 430 | logger.info(infoMsg) |
| 431 | |
| 432 | logger.debug("executing local command: %s" % self._cliCmd) |
| 433 | self._msfCliProc = execute(self._cliCmd, shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=False) |
| 434 | |
| 435 | def _runMsfShellcodeRemote(self): |
| 436 | infoMsg = "running Metasploit Framework shellcode " |
no test coverage detected