예제 #1
0
파일: winobject.py 프로젝트: a1ext/LKD
 def execute_python(self, pycode):
     """Execute Python code into the remote process"""
     return injection.execute_python_code(self, pycode)
예제 #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)
예제 #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)
예제 #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)
예제 #5
0
 def execute_python(self, pycode):
     """Execute Python code into the remote process"""
     return injection.execute_python_code(self, pycode)
예제 #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)