diff options
author | segfault <toni@impl.cc> | 2021-01-11 13:24:35 +0100 |
---|---|---|
committer | segfault <toni@impl.cc> | 2021-01-11 13:24:35 +0100 |
commit | 89ec896bede35949a43a41e779aadb11fe16f9a2 (patch) | |
tree | 5edea9bf65457340d2891d2864233b6f4a40c943 /include | |
parent | 0ede1cd40edc539764de998e373acd57f87403f1 (diff) |
Added new MemDriverLib functions to determine if a page is freed/reserved.
* added PAGES/RPM tests
* increased memory for ZwQuerySystemInformation in GetProcesses
Diffstat (limited to 'include')
-rw-r--r-- | include/KInterface.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/KInterface.h b/include/KInterface.h index 19c9268..55137e8 100644 --- a/include/KInterface.h +++ b/include/KInterface.h @@ -100,12 +100,18 @@ public: UINT32 getLastPingValue(); UINT32 getLastNtStatus(); + static bool PageIsFreed(MEMORY_BASIC_INFORMATION& page) { + return (page.Protect & PAGE_NOACCESS) != 0; + } + static bool PageIsPrivateReserved(MEMORY_BASIC_INFORMATION& page) { + return page.Protect == 0; + } SendRecvReturn RecvWait(DWORD timeout = DEFAULT_TIMEOUT_MS); - void StartPingThread(void (__cdecl *onTimeout)(void)); + void StartPingThread(void(__cdecl* onTimeout)(void)); private: SendRecvReturn SendRecvWait(UINT32 type, DWORD timeout = DEFAULT_TIMEOUT_MS); - void PingThread(void (__cdecl *onTimeout)(void)); + void PingThread(void(__cdecl* onTimeout)(void)); PVOID m_shmem = NULL; HANDLE m_kevent = NULL, m_uevent = NULL; |