Exemplo n.º 1
0
 def execute_python(self, pycode):
     """Execute Python code into the remote process"""
     return injection.execute_python_code(self, pycode)
Exemplo n.º 2
0
    def execute_python_unsafe(self, pycode):
        """Execute Python code into the remote process.

           Unsafe means that no information are returned about the execution of the thread
        """
        return injection.execute_python_code(self, pycode)
Exemplo n.º 3
0
    def execute_python_unsafe(self, pycode):
        """Execute Python code into the remote process.

        :rtype: :rtype: :class:`WinThread` or :class:`DeadThread` : The thread executing the python code
        """
        return injection.execute_python_code(self, pycode)
Exemplo n.º 4
0
    def execute_python_unsafe(self, pycode):
        """Execute Python code into the remote process.

        :rtype: :rtype: :class:`WinThread` or :class:`DeadThread` : The thread executing the python code
        """
        return injection.execute_python_code(self, pycode)
Exemplo n.º 5
0
 def execute_python(self, pycode):
     """Execute Python code into the remote process"""
     return injection.execute_python_code(self, pycode)
Exemplo n.º 6
0
    def execute_python_unsafe(self, pycode):
        """Execute Python code into the remote process.

           Unsafe means that no information are returned about the execution of the thread
        """
        return injection.execute_python_code(self, pycode)