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

Method open_process

Python-Bridge/Python-Bridge.py:338–341  ·  view source on GitHub ↗
(self, pid, access_mask, obj_attributes)

Source from the content-addressed store, hash-verified

336 return status, pethread
337
338 def open_process(self, pid, access_mask, obj_attributes):
339 handle = c_uint64()
340 status = self.__kb.KbOpenProcess(c_uint64(pid), byref(handle), c_uint(access_mask), c_uint(obj_attributes))
341 return status, handle
342
343 def open_process_by_ptr(self, peprocess, access_mask, obj_attributes, processor_mode):
344 handle = c_uint64()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected