mirror of
https://github.com/silverf0x/RpcView
synced 2026-06-08 17:26:38 +00:00
Add support for Protected and PPL processes with the ProcessExplorer driver.
REMARK: the feature requires the procexp.sys driver version 15.0.0.0
This commit is contained in:
@@ -193,7 +193,7 @@ BOOL __fastcall RpcGetProcessData(RpcModuleInfo_T* pRpcModuleInfo, RVA_T Rva, VO
|
||||
if (pRpcModuleInfo == NULL) goto End;
|
||||
pAddress = (VOID*)(pRpcModuleInfo->pModuleBase + Rva);
|
||||
|
||||
hProcess = OpenProcess(PROCESS_VM_READ | PROCESS_QUERY_INFORMATION, FALSE, pRpcModuleInfo->Pid);
|
||||
hProcess = ProcexpOpenProcess(PROCESS_VM_READ | PROCESS_QUERY_INFORMATION, FALSE, pRpcModuleInfo->Pid);
|
||||
if (hProcess == NULL) goto End;
|
||||
bResult = ReadProcessMemory(hProcess, pAddress, pBuffer, BufferLength, NULL);
|
||||
End:
|
||||
|
||||
Reference in New Issue
Block a user