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

Function KbUnsecureVirtualMemory

User-Bridge/API/User-Bridge.cpp:1057–1066  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1055 }
1056
1057 BOOL WINAPI KbUnsecureVirtualMemory(
1058 ULONG ProcessId,
1059 WdkTypes::HANDLE SecureHandle
1060 ) {
1061 if (!ProcessId || !SecureHandle) return FALSE;
1062 KB_UNSECURE_VIRTUAL_MEMORY_IN Input = {};
1063 Input.ProcessId = ProcessId;
1064 Input.SecureHandle = SecureHandle;
1065 return KbSendRequest(Ctls::KbUnsecureVirtualMemory, &Input, sizeof(Input));
1066 }
1067
1068 BOOL WINAPI KbReadProcessMemory(
1069 ULONG ProcessId,

Callers

nothing calls this directly

Calls 1

KbSendRequestFunction · 0.85

Tested by

no test coverage detected