| 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): |
nothing calls this directly
no outgoing calls
no test coverage detected