-
Notifications
You must be signed in to change notification settings - Fork 22
/
hook_special.c
475 lines (393 loc) · 15.3 KB
/
hook_special.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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
/*
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 "log.h"
#include "pipe.h"
#include "hook_sleep.h"
#include "misc.h"
#include "config.h"
HOOKDEF_NOTAIL(WINAPI, LdrLoadDll,
__in_opt PWCHAR PathToFile,
__in_opt PULONG Flags,
__in PUNICODE_STRING ModuleFileName,
__out PHANDLE ModuleHandle
) {
//
// In the event that loading this dll results in loading another dll as
// well, then the unicode string (which is located in the TEB) will be
// overwritten, therefore we make a copy of it for our own use.
//
lasterror_t lasterror;
NTSTATUS ret = 0;
COPY_UNICODE_STRING(library, ModuleFileName);
get_lasterrors(&lasterror);
/* Workaround for the case where we're being loaded twice in the same process
Logging the load could confuse a novice analyst into thinking there's unusual
activity when there's not, so hide it
*/
if (!called_by_hook() && wcsncmp(library.Buffer, g_config.dllpath, wcslen(g_config.dllpath))) {
if (g_config.file_of_interest && g_config.suspend_logging) {
wchar_t *absolutename = malloc(32768 * sizeof(wchar_t));
ensure_absolute_unicode_path(absolutename, library.Buffer);
if (!wcsicmp(absolutename, g_config.file_of_interest))
g_config.suspend_logging = FALSE;
free(absolutename);
}
if (!wcsncmp(library.Buffer, L"\\??\\", 4) || library.Buffer[1] == L':')
LOQ_ntstatus("system", "HFP", "Flags", Flags, "FileName", library.Buffer,
"BaseAddress", ModuleHandle);
else
LOQ_ntstatus("system", "HoP", "Flags", Flags, "FileName", &library,
"BaseAddress", ModuleHandle);
if (library.Buffer[1] == L':' && (!wcsnicmp(library.Buffer, L"c:\\windows\\system32\\", 20) ||
!wcsnicmp(library.Buffer, L"c:\\windows\\syswow64\\", 20) ||
!wcsnicmp(library.Buffer, L"c:\\windows\\sysnative\\", 21))) {
ret = 1;
}
else if (library.Buffer[1] != L':') {
WCHAR newlib[MAX_PATH] = { 0 };
DWORD concatlen = MIN((DWORD)wcslen(library.Buffer), MAX_PATH - 21);
wcscpy(newlib, L"c:\\windows\\system32\\");
wcsncat(newlib, library.Buffer, concatlen);
if (GetFileAttributesW(newlib) != INVALID_FILE_ATTRIBUTES)
ret = 1;
}
}
else {
ret = 1;
}
set_lasterrors(&lasterror);
return ret;
}
HOOKDEF_ALT(NTSTATUS, WINAPI, LdrLoadDll,
__in_opt PWCHAR PathToFile,
__in_opt PULONG Flags,
__in PUNICODE_STRING ModuleFileName,
__out PHANDLE ModuleHandle
) {
NTSTATUS ret;
hook_info_t saved_hookinfo;
memcpy(&saved_hookinfo, hook_info(), sizeof(saved_hookinfo));
ret = Old_LdrLoadDll(PathToFile, Flags, ModuleFileName, ModuleHandle);
memcpy(hook_info(), &saved_hookinfo, sizeof(saved_hookinfo));
disable_tail_call_optimization();
return ret;
}
extern void revalidate_all_hooks(void);
HOOKDEF_NOTAIL(WINAPI, LdrUnloadDll,
PVOID DllImageBase
) {
return 0;
}
HOOKDEF(BOOL, WINAPI, CreateProcessInternalW,
__in_opt LPVOID lpUnknown1,
__in_opt LPWSTR lpApplicationName,
__inout_opt LPWSTR lpCommandLine,
__in_opt LPSECURITY_ATTRIBUTES lpProcessAttributes,
__in_opt LPSECURITY_ATTRIBUTES lpThreadAttributes,
__in BOOL bInheritHandles,
__in DWORD dwCreationFlags,
__in_opt LPVOID lpEnvironment,
__in_opt LPWSTR lpCurrentDirectory,
__in LPSTARTUPINFOW lpStartupInfo,
__out LPPROCESS_INFORMATION lpProcessInformation,
__in_opt LPVOID lpUnknown2
) {
BOOL ret;
hook_info_t saved_hookinfo;
memcpy(&saved_hookinfo, hook_info(), sizeof(saved_hookinfo));
ret = Old_CreateProcessInternalW(lpUnknown1, lpApplicationName,
lpCommandLine, lpProcessAttributes, lpThreadAttributes,
bInheritHandles, dwCreationFlags | CREATE_SUSPENDED, lpEnvironment,
lpCurrentDirectory, lpStartupInfo, lpProcessInformation, lpUnknown2);
memcpy(hook_info(), &saved_hookinfo, sizeof(saved_hookinfo));
if(ret != FALSE) {
BOOL dont_monitor = FALSE;
if (g_config.file_of_interest && g_config.suspend_logging && lpApplicationName && !wcsicmp(lpApplicationName, L"c:\\windows\\splwow64.exe"))
dont_monitor = TRUE;
if (!dont_monitor)
pipe("PROCESS:%d:%d,%d", (dwCreationFlags & CREATE_SUSPENDED) ? 1 : 0, lpProcessInformation->dwProcessId,
lpProcessInformation->dwThreadId);
// if the CREATE_SUSPENDED flag was not set, then we have to resume
// the main thread ourself
if((dwCreationFlags & CREATE_SUSPENDED) == 0) {
ResumeThread(lpProcessInformation->hThread);
}
disable_sleep_skip();
}
if (!called_by_hook()) {
if (dwCreationFlags & EXTENDED_STARTUPINFO_PRESENT && lpStartupInfo->cb == sizeof(STARTUPINFOEXW)) {
HANDLE ParentHandle = (HANDLE)-1;
unsigned int i;
LPSTARTUPINFOEXW lpExtStartupInfo = (LPSTARTUPINFOEXW)lpStartupInfo;
if (lpExtStartupInfo->lpAttributeList) {
for (i = 0; i < lpExtStartupInfo->lpAttributeList->Count; i++)
if (lpExtStartupInfo->lpAttributeList->Entries[i].Attribute == PROC_THREAD_ATTRIBUTE_PARENT_PROCESS)
ParentHandle = *(HANDLE *)lpExtStartupInfo->lpAttributeList->Entries[i].lpValue;
}
LOQ_bool("process", "uuhiippps", "ApplicationName", lpApplicationName,
"CommandLine", lpCommandLine, "CreationFlags", dwCreationFlags,
"ProcessId", lpProcessInformation->dwProcessId,
"ThreadId", lpProcessInformation->dwThreadId,
"ParentHandle", ParentHandle,
"ProcessHandle", lpProcessInformation->hProcess,
"ThreadHandle", lpProcessInformation->hThread, "StackPivoted", is_stack_pivoted() ? "yes" : "no");
}
else {
LOQ_bool("process", "uuhiipps", "ApplicationName", lpApplicationName,
"CommandLine", lpCommandLine, "CreationFlags", dwCreationFlags,
"ProcessId", lpProcessInformation->dwProcessId,
"ThreadId", lpProcessInformation->dwThreadId,
"ProcessHandle", lpProcessInformation->hProcess,
"ThreadHandle", lpProcessInformation->hThread, "StackPivoted", is_stack_pivoted() ? "yes" : "no");
}
}
return ret;
}
static _CoTaskMemFree pCoTaskMemFree;
static _ProgIDFromCLSID pProgIDFromCLSID;
HOOKDEF(HRESULT, WINAPI, CoCreateInstance,
__in REFCLSID rclsid,
__in LPUNKNOWN pUnkOuter,
__in DWORD dwClsContext,
__in REFIID riid,
__out LPVOID *ppv
) {
IID id1;
IID id2;
char idbuf1[40];
char idbuf2[40];
lasterror_t lasterror;
HRESULT ret;
hook_info_t saved_hookinfo;
OLECHAR *resolv = NULL;
get_lasterrors(&lasterror);
if (!pCoTaskMemFree)
pCoTaskMemFree = (_CoTaskMemFree)GetProcAddress(GetModuleHandleA("ole32"), "CoTaskMemFree");
if (!pProgIDFromCLSID)
pProgIDFromCLSID = (_ProgIDFromCLSID)GetProcAddress(GetModuleHandleA("ole32"), "ProgIDFromCLSID");
memcpy(&id1, rclsid, sizeof(id1));
memcpy(&id2, riid, sizeof(id2));
sprintf(idbuf1, "%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X", id1.Data1, id1.Data2, id1.Data3,
id1.Data4[0], id1.Data4[1], id1.Data4[2], id1.Data4[3], id1.Data4[4], id1.Data4[5], id1.Data4[6], id1.Data4[7]);
sprintf(idbuf2, "%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X", id2.Data1, id2.Data2, id2.Data3,
id2.Data4[0], id2.Data4[1], id2.Data4[2], id2.Data4[3], id2.Data4[4], id2.Data4[5], id2.Data4[6], id2.Data4[7]);
if (!strcmp(idbuf1, "4590F811-1D3A-11D0-891F-00AA004B2E24") || !strcmp(idbuf1, "4590F812-1D3A-11D0-891F-00AA004B2E24") ||
!strcmp(idbuf1, "172BDDF8-CEEA-11D1-8B05-00600806D9B6") || !strcmp(idbuf1, "CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA")) {
pipe("WMI:");
}
if (!strcmp(idbuf1, "4991D34B-80A1-4291-83B6-3328366B9097") || !strcmp(idbuf1, "5CE34C0D-0DC9-4C1F-897C-100000000003"))
pipe("BITS:");
if (!strcmp(idbuf1, "0F87369F-A4E5-4CFC-BD3E-73E6154572DD") || !strcmp(idbuf1, "0F87369F-A4E5-4CFC-BD3E-5529CE8784B0") ||
!strcmp(idbuf1, "148BD52A-A2AB-11CE-B11F-00AA00530503"))
pipe("TASKSCHED:");
if (!strcmp(idbuf1, "000209FF-0000-0000-C000-000000000046") || !strcmp(idbuf1, "00024500-0000-0000-C000-000000000046") || !strcmp(idbuf1, "91493441-5A91-11CF-8700-00AA0060263B") ||
!strcmp(idbuf1, "000246FF-0000-0000-C000-000000000046"))
pipe("INTEROP:");
set_lasterrors(&lasterror);
memcpy(&saved_hookinfo, hook_info(), sizeof(saved_hookinfo));
ret = Old_CoCreateInstance(rclsid, pUnkOuter, dwClsContext, riid, ppv);
memcpy(hook_info(), &saved_hookinfo, sizeof(saved_hookinfo));
get_lasterrors(&lasterror);
pProgIDFromCLSID(&id1, &resolv);
LOQ_hresult("com", "shsu", "rclsid", idbuf1, "ClsContext", dwClsContext, "riid", idbuf2, "ProgID", resolv);
if (resolv)
pCoTaskMemFree(resolv);
set_lasterrors(&lasterror);
return ret;
}
HOOKDEF(HRESULT, WINAPI, CoCreateInstanceEx,
__in REFCLSID rclsid,
__in LPUNKNOWN pUnkOuter,
__in DWORD dwClsContext,
_In_ COSERVERINFO *pServerInfo,
_In_ DWORD dwCount,
_Inout_ MULTI_QI *pResults
) {
IID id1;
char idbuf1[40];
lasterror_t lasterror;
HRESULT ret;
hook_info_t saved_hookinfo;
OLECHAR *resolv = NULL;
get_lasterrors(&lasterror);
if (!pCoTaskMemFree)
pCoTaskMemFree = (_CoTaskMemFree)GetProcAddress(GetModuleHandleA("ole32"), "CoTaskMemFree");
if (!pProgIDFromCLSID)
pProgIDFromCLSID = (_ProgIDFromCLSID)GetProcAddress(GetModuleHandleA("ole32"), "ProgIDFromCLSID");
memcpy(&id1, rclsid, sizeof(id1));
sprintf(idbuf1, "%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X", id1.Data1, id1.Data2, id1.Data3,
id1.Data4[0], id1.Data4[1], id1.Data4[2], id1.Data4[3], id1.Data4[4], id1.Data4[5], id1.Data4[6], id1.Data4[7]);
if (!called_by_hook()) {
if (!strcmp(idbuf1, "4590F811-1D3A-11D0-891F-00AA004B2E24") || !strcmp(idbuf1, "4590F812-1D3A-11D0-891F-00AA004B2E24") ||
!strcmp(idbuf1, "172BDDF8-CEEA-11D1-8B05-00600806D9B6") || !strcmp(idbuf1, "CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA")) {
pipe("WMI:");
}
if (!strcmp(idbuf1, "4991D34B-80A1-4291-83B6-3328366B9097") || !strcmp(idbuf1, "5CE34C0D-0DC9-4C1F-897C-100000000003"))
pipe("BITS:");
if (!strcmp(idbuf1, "0F87369F-A4E5-4CFC-BD3E-73E6154572DD") || !strcmp(idbuf1, "0F87369F-A4E5-4CFC-BD3E-5529CE8784B0"))
pipe("TASKSCHED:");
if (!strcmp(idbuf1, "000209FF-0000-0000-C000-000000000046") || !strcmp(idbuf1, "00024500-0000-0000-C000-000000000046") || !strcmp(idbuf1, "91493441-5A91-11CF-8700-00AA0060263B") ||
!strcmp(idbuf1, "000246FF-0000-0000-C000-000000000046"))
pipe("INTEROP:");
}
set_lasterrors(&lasterror);
memcpy(&saved_hookinfo, hook_info(), sizeof(saved_hookinfo));
ret = Old_CoCreateInstanceEx(rclsid, pUnkOuter, dwClsContext, pServerInfo, dwCount, pResults);
memcpy(hook_info(), &saved_hookinfo, sizeof(saved_hookinfo));
if (!called_by_hook()) {
get_lasterrors(&lasterror);
pProgIDFromCLSID(&id1, &resolv);
LOQ_hresult("com", "shuu", "rclsid", idbuf1, "ClsContext", dwClsContext, "ServerName", pServerInfo ? pServerInfo->pwszName : NULL, "ProgID", resolv);
if (resolv)
pCoTaskMemFree(resolv);
set_lasterrors(&lasterror);
}
return ret;
}
HOOKDEF(HRESULT, WINAPI, CoGetClassObject,
_In_ REFCLSID rclsid,
_In_ DWORD dwClsContext,
_In_opt_ COSERVERINFO *pServerInfo,
_In_ REFIID riid,
_Out_ LPVOID *ppv
) {
HRESULT ret;
lasterror_t lasterror;
IID id1;
IID id2;
char idbuf1[40];
char idbuf2[40];
hook_info_t saved_hookinfo;
OLECHAR *resolv = NULL;
DWORD newctx = dwClsContext;
get_lasterrors(&lasterror);
if (!pCoTaskMemFree)
pCoTaskMemFree = (_CoTaskMemFree)GetProcAddress(GetModuleHandleA("ole32"), "CoTaskMemFree");
if (!pProgIDFromCLSID)
pProgIDFromCLSID = (_ProgIDFromCLSID)GetProcAddress(GetModuleHandleA("ole32"), "ProgIDFromCLSID");
memcpy(&id1, rclsid, sizeof(id1));
memcpy(&id2, riid, sizeof(id2));
sprintf(idbuf1, "%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X", id1.Data1, id1.Data2, id1.Data3,
id1.Data4[0], id1.Data4[1], id1.Data4[2], id1.Data4[3], id1.Data4[4], id1.Data4[5], id1.Data4[6], id1.Data4[7]);
sprintf(idbuf2, "%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X", id2.Data1, id2.Data2, id2.Data3,
id2.Data4[0], id2.Data4[1], id2.Data4[2], id2.Data4[3], id2.Data4[4], id2.Data4[5], id2.Data4[6], id2.Data4[7]);
set_lasterrors(&lasterror);
if (newctx & (CLSCTX_INPROC_HANDLER | CLSCTX_INPROC_SERVER))
newctx &= (CLSCTX_INPROC_HANDLER | CLSCTX_INPROC_SERVER);
memcpy(&saved_hookinfo, hook_info(), sizeof(saved_hookinfo));
ret = Old_CoGetClassObject(rclsid, newctx, pServerInfo, riid, ppv);
memcpy(hook_info(), &saved_hookinfo, sizeof(saved_hookinfo));
get_lasterrors(&lasterror);
pProgIDFromCLSID(&id1, &resolv);
LOQ_hresult("com", "shsu", "rclsid", idbuf1, "ClsContext", newctx, "riid", idbuf2, "ProgID", resolv);
if (resolv)
pCoTaskMemFree(resolv);
set_lasterrors(&lasterror);
return ret;
}
HOOKDEF_NOTAIL(WINAPI, JsEval,
PVOID Arg1,
PVOID Arg2,
PVOID Arg3,
int Index,
DWORD *scriptobj
) {
#ifndef _WIN64
PWCHAR jsbuf;
PUCHAR p;
#endif
int ret = 0;
/* TODO: 64-bit support*/
#ifdef _WIN64
return ret;
#else
p = (PUCHAR)scriptobj[4 * Index - 2];
if (p) {
jsbuf = *(PWCHAR *)(p + 8);
if (jsbuf)
LOQ_ntstatus("browser", "u", "Javascript", jsbuf);
}
return ret;
#endif
}
HOOKDEF(int, WINAPI, COleScript_ParseScriptText,
PVOID Arg1,
PWCHAR ScriptBuf,
PVOID Arg3,
PVOID Arg4,
PVOID Arg5,
PVOID Arg6,
PVOID Arg7,
PVOID Arg8,
PVOID Arg9,
PVOID Arg10
) {
int ret = Old_COleScript_ParseScriptText(Arg1, ScriptBuf, Arg3, Arg4, Arg5, Arg6, Arg7, Arg8, Arg9, Arg10);
LOQ_ntstatus("browser", "u", "Script", ScriptBuf);
return ret;
}
HOOKDEF(PVOID, WINAPI, JsParseScript,
const wchar_t *script,
PVOID SourceContext,
const wchar_t *sourceUrl,
PVOID *result
) {
PVOID ret = Old_JsParseScript(script, SourceContext, sourceUrl, result);
LOQ_zero("browser", "uu", "Script", script, "Source", sourceUrl);
return ret;
}
HOOKDEF_NOTAIL(WINAPI, JsRunScript,
const wchar_t *script,
PVOID SourceContext,
const wchar_t *sourceUrl,
PVOID *result
) {
int ret = 0;
LOQ_zero("browser", "uu", "Script", script, "Source", sourceUrl);
return ret;
}
// based on code by Stephan Chenette and Moti Joseph of Websense, Inc. released under the GPLv3
// http://securitylabs.websense.com/content/Blogs/3198.aspx
HOOKDEF(int, WINAPI, CDocument_write,
PVOID this,
SAFEARRAY *psa
) {
DWORD i;
PWCHAR buf;
int ret = Old_CDocument_write(this, psa);
VARIANT *pvars = (VARIANT *)psa->pvData;
unsigned int buflen = 0;
unsigned int offset = 0;
for (i = 0; i < psa->rgsabound[0].cElements; i++) {
if (pvars[i].vt == VT_BSTR)
buflen += (unsigned int)wcslen((const wchar_t *)pvars[i].pbstrVal) + 8;
}
buf = calloc(1, (buflen + 1) * sizeof(wchar_t));
if (buf == NULL)
return ret;
for (i = 0; i < psa->rgsabound[0].cElements; i++) {
if (pvars[i].vt == VT_BSTR) {
wcscpy(buf + offset, (const wchar_t *)pvars[i].pbstrVal);
offset += (unsigned int)wcslen((const wchar_t *)pvars[i].pbstrVal);
wcscpy(buf + offset, L"\r\n||||\r\n");
offset += 8;
}
}
LOQ_ntstatus("browser", "u", "Buffer", buf);
return ret;
}