mirror of
https://github.com/ufrisk/LeechCore.git
synced 2026-05-06 21:52:44 +08:00
fix can't get maped file
Some addresses are less than 0x1000000000, which can cause scanning failure. Starting from 0 can solve this problem
This commit is contained in:
@@ -60,7 +60,7 @@ BOOL DeviceVMWare_Open_GetRange(_In_ DWORD dwPID, _Out_writes_opt_(42) LPWSTR ws
|
||||
{
|
||||
DWORD cch;
|
||||
HANDLE hProcess = 0;
|
||||
QWORD va = 0x0000001000000000;
|
||||
QWORD va = 0x0000000000000000;
|
||||
WCHAR wsz[MAX_PATH + 1] = { 0 };
|
||||
MEMORY_BASIC_INFORMATION BI;
|
||||
hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, dwPID);
|
||||
|
||||
Reference in New Issue
Block a user