-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetours.cpp
More file actions
340 lines (300 loc) · 11.4 KB
/
detours.cpp
File metadata and controls
340 lines (300 loc) · 11.4 KB
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
#include "detours.h"
#include <windows.h>
#include <iostream>
#include <detours.h>
#include <map>
#include <cstdlib>
#include <vector>
#include <cstring>
#include <psapi.h>
static RegLog* regLog;
#pragma region Hooks
#pragma region Create Hooks
static LSTATUS(WINAPI* Real_RegCreateKeyA)(
HKEY, LPCSTR, PHKEY) = RegCreateKeyA;
static LSTATUS(WINAPI* Real_RegCreateKeyW)(
HKEY, LPCWSTR, PHKEY) = RegCreateKeyW;
static LSTATUS(WINAPI* Real_RegCreateKeyExA)(
HKEY, LPCSTR, DWORD, LPSTR, DWORD, REGSAM,
const LPSECURITY_ATTRIBUTES, PHKEY, LPDWORD) = RegCreateKeyExA;
static LSTATUS(WINAPI* Real_RegCreateKeyExW)(
HKEY, LPCWSTR, DWORD, LPWSTR, DWORD, REGSAM,
const LPSECURITY_ATTRIBUTES, PHKEY, LPDWORD) = RegCreateKeyExW;
static LSTATUS(WINAPI* Real_RegCreateKeyTransactedA)(
HKEY, LPCSTR, DWORD, LPSTR, DWORD, REGSAM,
const LPSECURITY_ATTRIBUTES, PHKEY, LPDWORD, HANDLE, PVOID) = RegCreateKeyTransactedA;
static LSTATUS(WINAPI* Real_RegCreateKeyTransactedW)(
HKEY, LPCWSTR, DWORD, LPWSTR, DWORD, REGSAM,
const LPSECURITY_ATTRIBUTES, PHKEY, LPDWORD, HANDLE, PVOID) = RegCreateKeyTransactedW;
#pragma endregion
#pragma region Open Hooks
static LSTATUS(WINAPI* Real_RegOpenKeyA)(
HKEY, LPCSTR, PHKEY) = RegOpenKeyA;
static LSTATUS(WINAPI* Real_RegOpenKeyW)(
HKEY, LPCWSTR, PHKEY) = RegOpenKeyW;
static LSTATUS(WINAPI* Real_RegOpenKeyExA)(
HKEY, LPCSTR, DWORD, REGSAM, PHKEY) = RegOpenKeyExA;
static LSTATUS(WINAPI* Real_RegOpenKeyExW)(
HKEY, LPCWSTR, DWORD, REGSAM, PHKEY) = RegOpenKeyExW;
static LSTATUS(WINAPI* Real_RegOpenKeyTransactedA)(
HKEY, LPCSTR, DWORD, REGSAM, PHKEY, HANDLE, PVOID) = RegOpenKeyTransactedA;
static LSTATUS(WINAPI* Real_RegOpenKeyTransactedW)(
HKEY, LPCWSTR, DWORD, REGSAM, PHKEY, HANDLE, PVOID) = RegOpenKeyTransactedW;
#pragma endregion
#pragma region Set Hooks
static LSTATUS(WINAPI* Real_RegSetValueExA)(
HKEY, LPCSTR, DWORD, DWORD, const BYTE*, DWORD) = RegSetValueExA;
static LSTATUS(WINAPI* Real_RegSetValueExW)(
HKEY, LPCWSTR, DWORD, DWORD, const BYTE*, DWORD) = RegSetValueExW;
static LSTATUS(WINAPI* Real_RegSetKeyValueA)(
HKEY, LPCSTR, LPCSTR, DWORD, LPCVOID, DWORD) = RegSetKeyValueA;
static LSTATUS(WINAPI* Real_RegSetKeyValueW)(
HKEY, LPCWSTR, LPCWSTR, DWORD, LPCVOID, DWORD) = RegSetKeyValueW;
#pragma endregion
#pragma endregion
#pragma region Eat
#pragma region Eat Create
static LSTATUS WINAPI Eat_RegCreateKeyA(
HKEY hKey,
LPCSTR lpSubKey,
PHKEY phkResult
)
{
LSTATUS status = Real_RegCreateKeyA(hKey, lpSubKey, phkResult);
regLog->LogWithSubpathRawAnsi(hKey, *phkResult, lpSubKey, RegEvent::RegEventType::CREATE, status);
return status;
}
static LSTATUS WINAPI Eat_RegCreateKeyW(
HKEY hKey,
LPCWSTR lpSubKey,
PHKEY phkResult
)
{
LSTATUS status = Real_RegCreateKeyW(hKey, lpSubKey, phkResult);
regLog->LogWithSubpathRawWide(hKey, *phkResult, lpSubKey, RegEvent::RegEventType::CREATE, status);
return status;
}
static LSTATUS WINAPI Eat_RegCreateKeyExA(
HKEY hKey,
LPCSTR lpSubKey,
DWORD Reserved,
LPSTR lpClass,
DWORD dwOptions,
REGSAM samDesired,
const LPSECURITY_ATTRIBUTES lpSecurityAttributes,
PHKEY phkResult,
LPDWORD lpdwDisposition
)
{
LSTATUS status = Real_RegCreateKeyExA(hKey, lpSubKey, Reserved, lpClass, dwOptions, samDesired, lpSecurityAttributes, phkResult, lpdwDisposition);
regLog->LogWithSubpathRawAnsi(hKey, *phkResult, lpSubKey, RegEvent::RegEventType::CREATE, status);
return status;
}
static LSTATUS WINAPI Eat_RegCreateKeyExW(
HKEY hKey,
LPCWSTR lpSubKey,
DWORD Reserved,
LPWSTR lpClass,
DWORD dwOptions,
REGSAM samDesired,
const LPSECURITY_ATTRIBUTES lpSecurityAttributes,
PHKEY phkResult,
LPDWORD lpdwDisposition
)
{
LSTATUS status = Real_RegCreateKeyExW(hKey, lpSubKey, Reserved, lpClass, dwOptions, samDesired, lpSecurityAttributes, phkResult, lpdwDisposition);
regLog->LogWithSubpathRawWide(hKey, *phkResult, lpSubKey, RegEvent::RegEventType::CREATE, status);
return status;
}
static LSTATUS WINAPI Eat_RegCreateKeyTransactedA(
HKEY hKey,
LPCSTR lpSubKey,
DWORD Reserved,
LPSTR lpClass,
DWORD dwOptions,
REGSAM samDesired,
const LPSECURITY_ATTRIBUTES lpSecurityAttributes,
PHKEY phkResult,
LPDWORD lpdwDisposition,
HANDLE hTransaction,
PVOID pExtendedParemeter
)
{
LSTATUS status = Real_RegCreateKeyTransactedA(hKey, lpSubKey, Reserved, lpClass, dwOptions, samDesired, lpSecurityAttributes, phkResult, lpdwDisposition, hTransaction, pExtendedParemeter);
regLog->LogWithSubpathRawAnsi(hKey, *phkResult, lpSubKey, RegEvent::RegEventType::CREATE, status);
return status;
}
static LSTATUS WINAPI Eat_RegCreateKeyTransactedW(
HKEY hKey,
LPCWSTR lpSubKey,
DWORD Reserved,
LPWSTR lpClass,
DWORD dwOptions,
REGSAM samDesired,
const LPSECURITY_ATTRIBUTES lpSecurityAttributes,
PHKEY phkResult,
LPDWORD lpdwDisposition,
HANDLE hTransaction,
PVOID pExtendedParemeter
)
{
LSTATUS status = Real_RegCreateKeyTransactedW(hKey, lpSubKey, Reserved, lpClass, dwOptions, samDesired, lpSecurityAttributes, phkResult, lpdwDisposition, hTransaction, pExtendedParemeter);
regLog->LogWithSubpathRawWide(hKey, *phkResult, lpSubKey, RegEvent::RegEventType::CREATE, status);
return status;
}
#pragma endregion
#pragma region Eat Open
static LSTATUS WINAPI Eat_RegOpenKeyA(
HKEY hKey,
LPCSTR lpSubKey,
PHKEY phkResult
)
{
LSTATUS status = Real_RegOpenKeyA(hKey, lpSubKey, phkResult);
regLog->LogWithSubpathRawAnsi(hKey, *phkResult, lpSubKey, RegEvent::RegEventType::OPEN, status);
return status;
}
static LSTATUS WINAPI Eat_RegOpenKeyW(
HKEY hKey,
LPCWSTR lpSubKey,
PHKEY phkResult
)
{
LSTATUS status = Real_RegOpenKeyW(hKey, lpSubKey, phkResult);
regLog->LogWithSubpathRawWide(hKey, *phkResult, lpSubKey, RegEvent::RegEventType::OPEN, status);
return status;
}
static LSTATUS WINAPI Eat_RegOpenKeyExA(
HKEY hKey,
LPCSTR lpSubKey,
DWORD ulOptions,
REGSAM samDesired,
PHKEY phkResult
)
{
LSTATUS status = Real_RegOpenKeyExA(hKey, lpSubKey, ulOptions, samDesired, phkResult);
regLog->LogWithSubpathRawAnsi(hKey, *phkResult, lpSubKey, RegEvent::RegEventType::OPEN, status);
return status;
}
static LSTATUS WINAPI Eat_RegOpenKeyExW(
HKEY hKey,
LPCWSTR lpSubKey,
DWORD ulOptions,
REGSAM samDesired,
PHKEY phkResult
)
{
LSTATUS status = Real_RegOpenKeyExW(hKey, lpSubKey, ulOptions, samDesired, phkResult);
regLog->LogWithSubpathRawWide(hKey, *phkResult, lpSubKey, RegEvent::RegEventType::OPEN, status);
return status;
}
static LSTATUS WINAPI Eat_RegOpenKeyTransactedA(
HKEY hKey,
LPCSTR lpSubKey,
DWORD ulOptions,
REGSAM samDesired,
PHKEY phkResult,
HANDLE hTransaction,
PVOID pExtendedParemeter
)
{
LSTATUS status = Real_RegOpenKeyTransactedA(hKey, lpSubKey, ulOptions, samDesired, phkResult, hTransaction, pExtendedParemeter);
regLog->LogWithSubpathRawAnsi(hKey, *phkResult, lpSubKey, RegEvent::RegEventType::OPEN, status);
return status;
}
static LSTATUS WINAPI Eat_RegOpenKeyTransactedW(
HKEY hKey,
LPCWSTR lpSubKey,
DWORD ulOptions,
REGSAM samDesired,
PHKEY phkResult,
HANDLE hTransaction,
PVOID pExtendedParemeter
)
{
LSTATUS status = Real_RegOpenKeyTransactedW(hKey, lpSubKey, ulOptions, samDesired, phkResult, hTransaction, pExtendedParemeter);
regLog->LogWithSubpathRawWide(hKey, *phkResult, lpSubKey, RegEvent::RegEventType::OPEN, status);
return status;
}
#pragma endregion
#pragma region Eat Set
static LSTATUS WINAPI Eat_RegSetValueExA(
HKEY hKey,
LPCSTR lpValueName,
DWORD Reserved,
DWORD dwType,
const BYTE* lpData,
DWORD cbData)
{
LSTATUS status = Real_RegSetValueExA(hKey, lpValueName, Reserved, dwType, lpData, cbData);
regLog->LogRawAnsi(hKey, RegEvent::RegEventType::SET, status, lpData, cbData, lpValueName);
return status;
}
static LSTATUS WINAPI Eat_RegSetValueExW(
HKEY hKey,
LPCWSTR lpValueName,
DWORD Reserved,
DWORD dwType,
const BYTE* lpData,
DWORD cbData)
{
LSTATUS status = Real_RegSetValueExW(hKey, lpValueName, Reserved, dwType, lpData, cbData);
regLog->LogRawWide(hKey, RegEvent::RegEventType::SET, status, lpData, cbData, lpValueName);
return status;
}
static LSTATUS WINAPI Eat_RegSetKeyValueA(
HKEY hKey,
LPCSTR lpSubKey,
LPCSTR lpValueName,
DWORD dwType,
LPCVOID lpData,
DWORD cbData)
{
LSTATUS status = Real_RegSetKeyValueA(hKey, lpSubKey, lpValueName, dwType, lpData, cbData);
regLog->LogWithSubpathRawAnsi(hKey, lpSubKey, RegEvent::RegEventType::SET, status, static_cast<const BYTE*>(lpData), cbData, lpValueName);
return status;
}
static LSTATUS WINAPI Eat_RegSetKeyValueW(
HKEY hKey,
LPCWSTR lpSubKey,
LPCWSTR lpValueName,
DWORD dwType,
LPCVOID lpData,
DWORD cbData)
{
LSTATUS status = Real_RegSetKeyValueW(hKey, lpSubKey, lpValueName, dwType, lpData, cbData);
regLog->LogWithSubpathRawWide(hKey, lpSubKey, RegEvent::RegEventType::SET, status, static_cast<const BYTE*>(lpData), cbData, lpValueName);
return status;
}
#pragma endregion
#pragma endregion
HRESULT PatchAllDetours(RegLog* rl)
{
regLog = rl;
if (DetourIsHelperProcess())
return S_OK;
DetourRestoreAfterWith();
DetourTransactionBegin();
DetourUpdateThread(GetCurrentThread());
// CREATE
DetourAttach(&(PVOID&)Real_RegCreateKeyA, Eat_RegCreateKeyA);
DetourAttach(&(PVOID&)Real_RegCreateKeyW, Eat_RegCreateKeyW);
DetourAttach(&(PVOID&)Real_RegCreateKeyExA, Eat_RegCreateKeyExA);
DetourAttach(&(PVOID&)Real_RegCreateKeyExW, Eat_RegCreateKeyExW);
DetourAttach(&(PVOID&)Real_RegCreateKeyTransactedA, Eat_RegCreateKeyTransactedA);
DetourAttach(&(PVOID&)Real_RegCreateKeyTransactedW, Eat_RegCreateKeyTransactedW);
// OPEN
DetourAttach(&(PVOID&)Real_RegOpenKeyA, Eat_RegOpenKeyA);
DetourAttach(&(PVOID&)Real_RegOpenKeyW, Eat_RegOpenKeyW);
DetourAttach(&(PVOID&)Real_RegOpenKeyExA, Eat_RegOpenKeyExA);
DetourAttach(&(PVOID&)Real_RegOpenKeyExW, Eat_RegOpenKeyExW);
DetourAttach(&(PVOID&)Real_RegOpenKeyTransactedA, Eat_RegOpenKeyTransactedA);
DetourAttach(&(PVOID&)Real_RegOpenKeyTransactedW, Eat_RegOpenKeyTransactedW);
// SET
DetourAttach(&(PVOID&)Real_RegSetValueExA, Eat_RegSetValueExA);
DetourAttach(&(PVOID&)Real_RegSetValueExW, Eat_RegSetValueExW);
DetourAttach(&(PVOID&)Real_RegSetKeyValueA, Eat_RegSetKeyValueA);
DetourAttach(&(PVOID&)Real_RegSetKeyValueW, Eat_RegSetKeyValueW);
DetourTransactionCommit();
return S_OK;
}