forked from spender-sandbox/cuckoomon-modified
-
Notifications
You must be signed in to change notification settings - Fork 0
/
unhook.c
419 lines (330 loc) · 11.1 KB
/
unhook.c
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
/*
Cuckoo Sandbox - Automated Malware Analysis
Copyright (C) 2010-2015 Cuckoo Sandbox Developers, Optiv, Inc. ([email protected])
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include "ntapi.h"
#include "hooking.h"
#include "pipe.h"
#include "log.h"
#include "misc.h"
#include "config.h"
#include <Sddl.h>
#define UNHOOK_MAXCOUNT 2048
#define UNHOOK_BUFSIZE 32
static HANDLE g_unhook_thread_handle, g_watcher_thread_handle;
// Index for adding new hooks and iterating all existing hooks.
static uint32_t g_index = 0;
// Length of this region.
static uint32_t g_length[UNHOOK_MAXCOUNT];
// Address of the region.
static uint8_t *g_addr[UNHOOK_MAXCOUNT];
// Function name of the region.
static const hook_t *g_unhook_hooks[UNHOOK_MAXCOUNT];
// The original contents of this region, before we modified it.
static uint8_t g_orig[UNHOOK_MAXCOUNT][UNHOOK_BUFSIZE];
// The contents of this region after we modified it.
static uint8_t g_our[UNHOOK_MAXCOUNT][UNHOOK_BUFSIZE];
// If the region has been modified, did we report this already?
static uint8_t g_hook_reported[UNHOOK_MAXCOUNT];
int address_already_hooked(uint8_t *addr)
{
uint32_t idx;
for (idx = 0; idx < g_index; idx++)
/* hack to handle the safe hooktype */
if (addr == g_addr[idx] || addr == (g_addr[idx] + 5))
return 1;
return 0;
}
uint32_t get_first_zero_addr_index(void)
{
uint32_t i;
for (i = 0; i < g_index; i++) {
if (g_addr[i] == NULL) {
g_addr[i] = (uint8_t *)1;
return i;
}
}
return g_index;
}
static int max_unhook_warned;
void unhook_detect_add_region(const hook_t *hook, uint8_t *addr,
const uint8_t *orig, const uint8_t *our, uint32_t length)
{
uint32_t index;
if(g_index == UNHOOK_MAXCOUNT - 1) {
if (!max_unhook_warned)
pipe("CRITICAL:Reached maximum number of unhook detection entries!");
max_unhook_warned = 1;
return;
}
if (address_already_hooked(addr))
return;
index = get_first_zero_addr_index();
g_length[index] = MIN(length, UNHOOK_BUFSIZE);
g_addr[index] = addr;
g_unhook_hooks[index] = hook;
memcpy(g_orig[index], orig, g_length[index]);
memcpy(g_our[index], our, g_length[index]);
g_hook_reported[index] = 0;
if (index == g_index)
g_index++;
}
void invalidate_regions_for_hook(const hook_t *hook)
{
uint32_t idx;
for (idx = 0; idx < g_index; idx++) {
if (g_unhook_hooks[idx] == hook) {
/* get the unhook watcher to ignore this region */
g_hook_reported[idx] = 1;
/* since this hook was removed, we shouldn't prevent the same address from being hooked again
later, see address_already_hooked() above */
g_addr[idx] = 0;
}
}
}
void restore_hooks_on_range(ULONG_PTR start, ULONG_PTR end)
{
lasterror_t lasterror;
uint32_t idx;
get_lasterrors(&lasterror);
__try {
for (idx = 0; idx < g_index; idx++) {
if ((ULONG_PTR)g_addr[idx] < start || ((ULONG_PTR)g_addr[idx] + g_length[idx]) > end)
continue;
if (!memcmp(g_orig[idx], g_addr[idx], g_length[idx])) {
memcpy(g_addr[idx], g_our[idx], g_length[idx]);
log_hook_restoration(g_unhook_hooks[idx]);
}
}
}
__except (EXCEPTION_EXECUTE_HANDLER) {
;
}
set_lasterrors(&lasterror);
}
static DWORD WINAPI _unhook_detect_thread(LPVOID param)
{
static int watcher_first = 1;
uint32_t idx;
hook_disable();
while (1) {
if(WaitForSingleObject(g_watcher_thread_handle,
500) != WAIT_TIMEOUT) {
if(watcher_first != 0) {
if(is_shutting_down() == 0) {
log_anomaly("unhook", "Unhook watcher thread has been corrupted!");
}
watcher_first = 0;
}
raw_sleep(100);
}
for (idx = 0; idx < g_index; idx++) {
if (g_unhook_hooks[idx]->is_hooked && g_hook_reported[idx] == 0) {
char *tmpbuf = NULL;
if (!is_valid_address_range((ULONG_PTR)g_addr[idx], g_length[idx])) {
continue;
}
__try {
int is_modification = 1;
// Check whether this memory region still equals what we made it.
if (!memcmp(g_addr[idx], g_our[idx], g_length[idx])) {
continue;
}
// If the memory region matches the original contents, then it
// has been restored to its original state.
if (!memcmp(g_orig[idx], g_addr[idx], g_length[idx]))
is_modification = 0;
if (is_shutting_down() == 0) {
if (is_modification) {
char *tmpbuf2;
tmpbuf2 = tmpbuf = malloc(g_length[idx]);
memcpy(tmpbuf, g_addr[idx], g_length[idx]);
log_hook_modification(g_unhook_hooks[idx], g_our[idx], tmpbuf, g_length[idx]);
tmpbuf = NULL;
free(tmpbuf2);
}
else
log_hook_removal(g_unhook_hooks[idx]);
}
g_hook_reported[idx] = 1;
}
__except (EXCEPTION_EXECUTE_HANDLER) {
// cuckoo currently has no handling for FreeLibrary, so if a hooked DLL ends up
// being unloaded we would crash in the code above
if (tmpbuf)
free(tmpbuf);
}
}
}
}
return 0;
}
static DWORD WINAPI _unhook_watch_thread(LPVOID param)
{
hook_disable();
while (WaitForSingleObject(g_unhook_thread_handle, 1000) == WAIT_TIMEOUT);
if(is_shutting_down() == 0) {
log_anomaly("unhook", "Unhook detection thread has been corrupted!");
}
return 0;
}
DWORD g_unhook_detect_thread_id;
DWORD g_unhook_watcher_thread_id;
int unhook_init_detection()
{
g_unhook_thread_handle =
CreateThread(NULL, 0, &_unhook_detect_thread, NULL, 0, &g_unhook_detect_thread_id);
g_watcher_thread_handle =
CreateThread(NULL, 0, &_unhook_watch_thread, NULL, 0, &g_unhook_watcher_thread_id);
if(g_unhook_thread_handle != NULL && g_watcher_thread_handle != NULL) {
return 0;
}
pipe("CRITICAL:Error initializing unhook detection threads!");
return -1;
}
static HANDLE g_terminate_event_thread_handle;
static HANDLE g_terminate_event_handle;
static DWORD WINAPI _terminate_event_thread(LPVOID param)
{
hook_disable();
while (1) {
WaitForSingleObject(g_terminate_event_handle, INFINITE);
log_flush();
}
return 0;
}
DWORD g_terminate_event_thread_id;
int terminate_event_init()
{
SECURITY_DESCRIPTOR sd;
SECURITY_ATTRIBUTES sa;
InitializeSecurityDescriptor(&sd, SECURITY_DESCRIPTOR_REVISION);
SetSecurityDescriptorDacl(&sd, TRUE, NULL, FALSE);
sa.nLength = sizeof(SECURITY_ATTRIBUTES);
sa.bInheritHandle = FALSE;
sa.lpSecurityDescriptor = &sd;
g_terminate_event_handle = CreateEventA(&sa, FALSE, FALSE, g_config.terminate_event_name);
g_terminate_event_thread_handle =
CreateThread(NULL, 0, &_terminate_event_thread, NULL, 0, &g_terminate_event_thread_id);
if (g_terminate_event_handle != NULL && g_terminate_event_thread_handle != NULL)
return 0;
pipe("CRITICAL:Error initializing terminate event thread!");
return -1;
}
static HANDLE g_procname_watch_thread_handle;
static UNICODE_STRING InitialProcessName;
static UNICODE_STRING InitialProcessPath;
static DWORD WINAPI _procname_watch_thread(LPVOID param)
{
hook_disable();
while (1) {
LDR_MODULE *mod; PEB *peb = (PEB *)get_peb();
__try {
mod = (LDR_MODULE *)peb->LoaderData->InLoadOrderModuleList.Flink;
if (InitialProcessName.Length != mod->BaseDllName.Length || InitialProcessPath.Length != mod->FullDllName.Length ||
memcmp(InitialProcessName.Buffer, mod->BaseDllName.Buffer, InitialProcessName.Length) ||
memcmp(InitialProcessPath.Buffer, mod->FullDllName.Buffer, InitialProcessPath.Length)) {
// allow concurrent modifications to settle, as malware doesn't particularly care about proper locking
Sleep(50);
log_procname_anomaly(&InitialProcessName, &InitialProcessPath, &mod->BaseDllName, &mod->FullDllName);
}
}
__except (EXCEPTION_EXECUTE_HANDLER) {
;
}
Sleep(1000);
}
return 0;
}
DWORD g_procname_watcher_thread_id;
int procname_watch_init()
{
LDR_MODULE *mod; PEB *peb = (PEB *)get_peb();
mod = (LDR_MODULE *)peb->LoaderData->InLoadOrderModuleList.Flink;
InitialProcessName.MaximumLength = InitialProcessName.Length = mod->BaseDllName.Length;
InitialProcessName.Buffer = malloc(InitialProcessName.Length);
memcpy(InitialProcessName.Buffer, mod->BaseDllName.Buffer, InitialProcessName.Length);
InitialProcessPath.MaximumLength = InitialProcessPath.Length = mod->FullDllName.Length;
InitialProcessPath.Buffer = malloc(InitialProcessPath.Length);
memcpy(InitialProcessPath.Buffer, mod->FullDllName.Buffer, InitialProcessPath.Length);
g_procname_watch_thread_handle =
CreateThread(NULL, 0, &_procname_watch_thread, NULL, 0, &g_procname_watcher_thread_id);
if (g_procname_watch_thread_handle != NULL)
return 0;
pipe("CRITICAL:Error initializing terminate event thread!");
return -1;
}
DWORD g_watchdog_thread_id;
#ifndef _WIN64
static ULONG_PTR cuckoomonaddrs[60];
static int cuckoomonaddrs_num;
static int find_cuckoomon_addrs(void *unused, ULONG_PTR addr)
{
if (cuckoomonaddrs_num < 60)
cuckoomonaddrs[cuckoomonaddrs_num++] = addr;
return 0;
}
static int _operate_on_backtrace(ULONG_PTR retaddr, ULONG_PTR _ebp, void *extra, int(*func)(void *, ULONG_PTR))
{
int ret;
while (_ebp)
{
// obtain the return address and the next value of ebp
ULONG_PTR addr = *(ULONG_PTR *)(_ebp + sizeof(ULONG_PTR));
_ebp = *(ULONG_PTR *)_ebp;
ret = func(extra, addr);
if (ret)
return ret;
}
return ret;
}
static DWORD WINAPI _watchdog_thread(LPVOID param)
{
hook_disable();
while (1) {
char msg[16384];
char *dllname;
unsigned int off = 0;
int i;
CONTEXT ctx;
raw_sleep(5000);
memset(&cuckoomonaddrs, 0, sizeof(cuckoomonaddrs));
cuckoomonaddrs_num = 0;
memset(&ctx, 0, sizeof(ctx));
SuspendThread((HANDLE)param);
ctx.ContextFlags = CONTEXT_FULL;
GetThreadContext((HANDLE)param, &ctx);
dllname = convert_address_to_dll_name_and_offset(ctx.Eip, &off);
sprintf(msg, "INFO: PID %u thread: %p EIP: %s+%x(0x%lx) EAX: 0x%lx EBX: 0x%lx ECX: 0x%lx EDX: 0x%lx ESI: 0x%lx EDI: 0x%lx EBP: 0x%lx ESP: 0x%lx\n", GetCurrentProcessId(), param, dllname ? dllname : "", off, ctx.Eip, ctx.Eax, ctx.Ebx, ctx.Ecx, ctx.Edx, ctx.Esi, ctx.Edi, ctx.Ebp, ctx.Esp);
_operate_on_backtrace(ctx.Eip, ctx.Ebp, NULL, find_cuckoomon_addrs);
for (i = 0; i < cuckoomonaddrs_num; i++) {
char *dllname2 = convert_address_to_dll_name_and_offset(cuckoomonaddrs[i], &off);
sprintf(msg + strlen(msg), " %s+%x(0x%lx)", dllname2 ? dllname2 : "", off, cuckoomonaddrs[i]);
if (dllname2)
free(dllname2);
}
if (dllname)
free(dllname);
ResumeThread((HANDLE)param);
pipe(msg);
}
}
int init_watchdog()
{
HANDLE mainthreadhandle;
DuplicateHandle(GetCurrentProcess(), GetCurrentThread(), GetCurrentProcess(), &mainthreadhandle, THREAD_ALL_ACCESS, FALSE, 0);
CreateThread(NULL, 0, &_watchdog_thread, mainthreadhandle, 0, &g_watchdog_thread_id);
return 0;
}
#endif