MCPcopy Create free account
hub / github.com/HoShiMin/Kernel-Bridge / KernelShells

Class KernelShells

Python-Bridge/Python-Bridge.py:561–568  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

559 return self.__kb.KbUnmapViewOfSection(c_uint64(hprocess), c_uint64(base_address))
560
561 class KernelShells:
562 def __init__(self, kb):
563 self.__kb = kb
564
565 def execute_shell_code(self, routine, arg):
566 result = c_uint()
567 status = self.__kb.KbExecuteShellCode(c_void_p(routine), c_void_p(arg), byref(result))
568 return status, result
569
570 class LoadableModules:
571 def __init__(self, kb):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected