diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-09-22 12:46:04 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-09-22 12:46:04 +0200 |
commit | 2c3f2c0f63478b5d158ae72e255627a4a39f00b1 (patch) | |
tree | 5c00acdd79ccfdd7abb724050ab56ce62f3ad57b /include | |
parent | 8d2a9fc1b66228c258d4cf42dc58d3c11852476e (diff) |
DLLHelper: added Has* functions to check availability of some data dirs, implemented copy PE header and sections function, fixed invalid VAlloc request size
Diffstat (limited to 'include')
-rw-r--r-- | include/DLLHelper.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/DLLHelper.h b/include/DLLHelper.h index 764b16f..5631626 100644 --- a/include/DLLHelper.h +++ b/include/DLLHelper.h @@ -3,6 +3,9 @@ #include <string> #include <Windows.h> + +typedef void(*LibEntry_FN)(void); + class DLLHelper { public: @@ -12,8 +15,17 @@ public: bool Init(HANDLE targetPID, const char * fullDllPath); bool VerifyHeader(); bool InitTargetMemory(); + bool HasImports() { + return m_NTHeader && + m_NTHeader->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_IMPORT].Size; + } bool FixImports(); + bool HasRelocs() { + return m_NTHeader && + m_NTHeader->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_BASERELOC].Size; + } bool FixRelocs(); + bool CopyHeaderAndSections(); private: HANDLE m_TargetPID = 0; |