blob: 7fdff37d62772f8dee831595edda417cd1c2e559 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#pragma once
#include <string>
#include <Windows.h>
typedef void(*LibEntry_FN)(void);
static inline bool LoadAndTestLibraryEntry(const char * const fullDllPath);
bool VerifyPeHeader(UINT8 const * const buf, SIZE_T siz, IMAGE_NT_HEADERS ** const return_NTHeader);
class DLLHelper
{
public:
DLLHelper();
~DLLHelper();
bool Init(HANDLE targetPID, const char * const 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();
UINT64 GetEntryPoint() {
if (!m_NTHeader) {
return 0;
}
return (UINT64)m_TargetBaseAddress + m_NTHeader->OptionalHeader.AddressOfEntryPoint;
}
UINT64 GetBaseAddress() {
return (UINT64)m_TargetBaseAddress;
}
private:
HANDLE m_TargetPID = 0;
std::string m_DLLPath;
DWORD m_DLLSize = 0;
UINT8 *m_DLLPtr = nullptr;
IMAGE_NT_HEADERS *m_NTHeader = nullptr;
PVOID m_TargetBaseAddress = nullptr;
};
|