示例#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)