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