-
Notifications
You must be signed in to change notification settings - Fork 22
/
hook_process.c
856 lines (728 loc) · 29.7 KB
/
hook_process.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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
/*
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 <tlhelp32.h>
#include "hooking.h"
#include "log.h"
#include "pipe.h"
#include "misc.h"
#include "ignore.h"
#include "hook_sleep.h"
#include "unhook.h"
#include "config.h"
HOOKDEF(HANDLE, WINAPI, CreateToolhelp32Snapshot,
__in DWORD dwFlags,
__in DWORD th32ProcessID
) {
HANDLE ret = Old_CreateToolhelp32Snapshot(dwFlags, th32ProcessID);
LOQ_handle("process", "hi", "Flags", dwFlags, "ProcessId", th32ProcessID);
return ret;
}
HOOKDEF(BOOL, WINAPI, Process32NextW,
__in HANDLE hSnapshot,
__out LPPROCESSENTRY32W lppe
) {
BOOL ret = Old_Process32NextW(hSnapshot, lppe);
/* skip returning protected processes */
while (ret && lppe && is_protected_pid(lppe->th32ProcessID))
ret = Old_Process32NextW(hSnapshot, lppe);
if (ret)
LOQ_bool("process", "ui", "ProcessName", lppe->szExeFile, "ProcessId", lppe->th32ProcessID);
else
LOQ_bool("process", "");
return ret;
}
HOOKDEF(BOOL, WINAPI, Process32FirstW,
__in HANDLE hSnapshot,
__out LPPROCESSENTRY32W lppe
) {
BOOL ret = Old_Process32FirstW(hSnapshot, lppe);
/* skip returning protected processes */
while (ret && lppe && is_protected_pid(lppe->th32ProcessID))
ret = Old_Process32NextW(hSnapshot, lppe);
if (ret)
LOQ_bool("process", "ui", "ProcessName", lppe->szExeFile, "ProcessId", lppe->th32ProcessID);
else
LOQ_bool("process", "");
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtCreateProcess,
__out PHANDLE ProcessHandle,
__in ACCESS_MASK DesiredAccess,
__in_opt POBJECT_ATTRIBUTES ObjectAttributes,
__in HANDLE ParentProcess,
__in BOOLEAN InheritObjectTable,
__in_opt HANDLE SectionHandle,
__in_opt HANDLE DebugPort,
__in_opt HANDLE ExceptionPort
) {
NTSTATUS ret = Old_NtCreateProcess(ProcessHandle, DesiredAccess,
ObjectAttributes, ParentProcess, InheritObjectTable, SectionHandle,
DebugPort, ExceptionPort);
LOQ_ntstatus("process", "PphO", "ProcessHandle", ProcessHandle, "ParentHandle", ParentProcess, "DesiredAccess", DesiredAccess,
"FileName", ObjectAttributes);
if(NT_SUCCESS(ret)) {
DWORD pid = pid_from_process_handle(*ProcessHandle);
pipe("PROCESS:%d:%d", is_suspended(pid, 0), pid);
disable_sleep_skip();
}
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtCreateProcessEx,
__out PHANDLE ProcessHandle,
__in ACCESS_MASK DesiredAccess,
__in_opt POBJECT_ATTRIBUTES ObjectAttributes,
__in HANDLE ParentProcess,
__in ULONG Flags,
__in_opt HANDLE SectionHandle,
__in_opt HANDLE DebugPort,
__in_opt HANDLE ExceptionPort,
__in BOOLEAN InJob
) {
NTSTATUS ret = Old_NtCreateProcessEx(ProcessHandle, DesiredAccess,
ObjectAttributes, ParentProcess, Flags, SectionHandle, DebugPort,
ExceptionPort, InJob);
LOQ_ntstatus("process", "PphO", "ProcessHandle", ProcessHandle, "ParentHandle", ParentProcess, "DesiredAccess", DesiredAccess,
"FileName", ObjectAttributes);
if(NT_SUCCESS(ret)) {
DWORD pid = pid_from_process_handle(*ProcessHandle);
pipe("PROCESS:%d:%d", is_suspended(pid, 0), pid);
disable_sleep_skip();
}
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtCreateUserProcess,
__out PHANDLE ProcessHandle,
__out PHANDLE ThreadHandle,
__in ACCESS_MASK ProcessDesiredAccess,
__in ACCESS_MASK ThreadDesiredAccess,
__in_opt POBJECT_ATTRIBUTES ProcessObjectAttributes,
__in_opt POBJECT_ATTRIBUTES ThreadObjectAttributes,
__in ULONG ProcessFlags,
__in ULONG ThreadFlags,
__in_opt PRTL_USER_PROCESS_PARAMETERS ProcessParameters,
__inout PPS_CREATE_INFO CreateInfo,
__in_opt PPS_ATTRIBUTE_LIST AttributeList
) {
RTL_USER_PROCESS_PARAMETERS _ProcessParameters;
NTSTATUS ret;
memset(&_ProcessParameters, 0, sizeof(_ProcessParameters));
if(ProcessParameters == NULL)
ProcessParameters = &_ProcessParameters;
ret = Old_NtCreateUserProcess(ProcessHandle, ThreadHandle,
ProcessDesiredAccess, ThreadDesiredAccess,
ProcessObjectAttributes, ThreadObjectAttributes,
ProcessFlags, ThreadFlags | 1, ProcessParameters,
CreateInfo, AttributeList);
LOQ_ntstatus("process", "PPhhOOoo", "ProcessHandle", ProcessHandle,
"ThreadHandle", ThreadHandle,
"ProcessDesiredAccess", ProcessDesiredAccess,
"ThreadDesiredAccess", ThreadDesiredAccess,
"ProcessFileName", ProcessObjectAttributes,
"ThreadName", ThreadObjectAttributes,
"ImagePathName", &ProcessParameters->ImagePathName,
"CommandLine", &ProcessParameters->CommandLine);
if(NT_SUCCESS(ret)) {
DWORD pid = pid_from_process_handle(*ProcessHandle);
DWORD tid = tid_from_thread_handle(*ThreadHandle);
pipe("PROCESS:%d:%d,%d", is_suspended(pid, tid), pid, tid);
if (!(ThreadFlags & 1))
ResumeThread(*ThreadHandle);
disable_sleep_skip();
}
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, RtlCreateUserProcess,
IN PUNICODE_STRING ImagePath,
IN ULONG ObjectAttributes,
IN OUT PRTL_USER_PROCESS_PARAMETERS ProcessParameters,
IN PSECURITY_DESCRIPTOR ProcessSecurityDescriptor OPTIONAL,
IN PSECURITY_DESCRIPTOR ThreadSecurityDescriptor OPTIONAL,
IN HANDLE ParentProcess,
IN BOOLEAN InheritHandles,
IN HANDLE DebugPort OPTIONAL,
IN HANDLE ExceptionPort OPTIONAL,
OUT PRTL_USER_PROCESS_INFORMATION ProcessInformation
) {
NTSTATUS ret = Old_RtlCreateUserProcess(ImagePath, ObjectAttributes,
ProcessParameters, ProcessSecurityDescriptor,
ThreadSecurityDescriptor, ParentProcess, InheritHandles, DebugPort,
ExceptionPort, ProcessInformation);
LOQ_ntstatus("process", "ohp", "ImagePath", ImagePath, "ObjectAttributes", ObjectAttributes,
"ParentHandle", ParentProcess);
if(NT_SUCCESS(ret)) {
DWORD pid = pid_from_process_handle(ProcessInformation->ProcessHandle);
DWORD tid = tid_from_thread_handle(ProcessInformation->ThreadHandle);
pipe("PROCESS:%d:%d,%d", is_suspended(pid, tid), pid, tid);
disable_sleep_skip();
}
return ret;
}
HOOKDEF(BOOL, WINAPI, CreateProcessWithLogonW,
_In_ LPCWSTR lpUsername,
_In_opt_ LPCWSTR lpDomain,
_In_ LPCWSTR lpPassword,
_In_ DWORD dwLogonFlags,
_In_opt_ LPCWSTR lpApplicationName,
_Inout_opt_ LPWSTR lpCommandLine,
_In_ DWORD dwCreationFlags,
_In_opt_ LPVOID lpEnvironment,
_In_opt_ LPCWSTR lpCurrentDirectory,
_In_ LPSTARTUPINFOW lpStartupInfo,
_Out_ LPPROCESS_INFORMATION lpProcessInfo
) {
BOOL ret;
LPWSTR origcommandline = NULL;
if (lpCommandLine)
origcommandline = wcsdup(lpCommandLine);
ret = Old_CreateProcessWithLogonW(lpUsername, lpDomain, lpPassword, dwLogonFlags, lpApplicationName, lpCommandLine, dwCreationFlags | CREATE_SUSPENDED, lpEnvironment, lpCurrentDirectory, lpStartupInfo, lpProcessInfo);
LOQ_bool("process", "uuuhuuhiipp", "Username", lpUsername, "Domain", lpDomain, "Password", lpPassword, "LogonFlags", dwLogonFlags, "ApplicationName", lpApplicationName, "CommandLine", origcommandline, "CreationFlags", dwCreationFlags,
"ProcessId", lpProcessInfo->dwProcessId, "ThreadId", lpProcessInfo->dwThreadId, "ProcessHandle", lpProcessInfo->hProcess, "ThreadHandle", lpProcessInfo->hThread);
if (origcommandline)
free(origcommandline);
if (ret) {
pipe("PROCESS:%d:%d,%d", is_suspended(lpProcessInfo->dwProcessId, lpProcessInfo->dwThreadId), lpProcessInfo->dwProcessId, lpProcessInfo->dwThreadId);
if (!(dwCreationFlags & CREATE_SUSPENDED))
ResumeThread(lpProcessInfo->hThread);
disable_sleep_skip();
}
return ret;
}
HOOKDEF(BOOL, WINAPI, CreateProcessWithTokenW,
_In_ HANDLE hToken,
_In_ DWORD dwLogonFlags,
_In_opt_ LPCWSTR lpApplicationName,
_Inout_opt_ LPWSTR lpCommandLine,
_In_ DWORD dwCreationFlags,
_In_opt_ LPVOID lpEnvironment,
_In_opt_ LPCWSTR lpCurrentDirectory,
_In_ LPSTARTUPINFOW lpStartupInfo,
_Out_ LPPROCESS_INFORMATION lpProcessInfo
) {
BOOL ret;
LPWSTR origcommandline = NULL;
if (lpCommandLine)
origcommandline = wcsdup(lpCommandLine);
ret = Old_CreateProcessWithTokenW(hToken, dwLogonFlags, lpApplicationName, lpCommandLine, dwCreationFlags | CREATE_SUSPENDED, lpEnvironment, lpCurrentDirectory, lpStartupInfo, lpProcessInfo);
LOQ_bool("process", "huuhiipp", "LogonFlags", dwLogonFlags, "ApplicationName", lpApplicationName, "CommandLine", origcommandline, "CreationFlags", dwCreationFlags,
"ProcessId", lpProcessInfo->dwProcessId, "ThreadId", lpProcessInfo->dwThreadId, "ProcessHandle", lpProcessInfo->hProcess, "ThreadHandle", lpProcessInfo->hThread);
if (origcommandline)
free(origcommandline);
if (ret) {
pipe("PROCESS:%d:%d,%d", is_suspended(lpProcessInfo->dwProcessId, lpProcessInfo->dwThreadId), lpProcessInfo->dwProcessId, lpProcessInfo->dwThreadId);
if (!(dwCreationFlags & CREATE_SUSPENDED))
ResumeThread(lpProcessInfo->hThread);
disable_sleep_skip();
}
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtOpenProcess,
__out PHANDLE ProcessHandle,
__in ACCESS_MASK DesiredAccess,
__in POBJECT_ATTRIBUTES ObjectAttributes,
__in_opt PCLIENT_ID ClientId
) {
// although the documentation on msdn is a bit vague, this seems correct
// for both XP and Vista (the ClientId->UniqueProcess part, that is)
int pid = 0;
NTSTATUS ret;
if(ClientId != NULL) {
__try {
pid = (int)(ULONG_PTR)ClientId->UniqueProcess;
}
__except (EXCEPTION_EXECUTE_HANDLER) {
;
}
}
if(is_protected_pid(pid)) {
ret = STATUS_ACCESS_DENIED;
LOQ_ntstatus("process", "ppl", "ProcessHandle", NULL, "DesiredAccess", DesiredAccess,
"ProcessIdentifier", pid);
return ret;
}
ret = Old_NtOpenProcess(ProcessHandle, DesiredAccess,
ObjectAttributes, ClientId);
LOQ_ntstatus("process", "Phi", "ProcessHandle", ProcessHandle,
"DesiredAccess", DesiredAccess,
"ProcessIdentifier", pid);
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtResumeProcess,
__in HANDLE ProcessHandle
) {
NTSTATUS ret;
DWORD pid = pid_from_process_handle(ProcessHandle);
pipe("RESUME:%d", pid);
ret = Old_NtResumeProcess(ProcessHandle);
LOQ_ntstatus("process", "p", "ProcessHandle", ProcessHandle);
return ret;
}
int process_shutting_down;
HOOKDEF(NTSTATUS, WINAPI, NtTerminateProcess,
__in_opt HANDLE ProcessHandle,
__in NTSTATUS ExitStatus
) {
// Process will terminate. Default logging will not work. Be aware: return value not valid
NTSTATUS ret = 0;
lasterror_t lasterror;
get_lasterrors(&lasterror);
if (ProcessHandle == NULL) {
// we mark this here as this termination type will kill all threads but ours, including
// the logging thread. By setting this, we'll switch into a direct logging mode
// for the subsequent call to NtTerminateProcess against our own process handle
process_shutting_down = 1;
LOQ_ntstatus("process", "ph", "ProcessHandle", ProcessHandle, "ExitCode", ExitStatus);
}
else if (GetCurrentProcessId() == our_getprocessid(ProcessHandle)) {
process_shutting_down = 1;
LOQ_ntstatus("process", "ph", "ProcessHandle", ProcessHandle, "ExitCode", ExitStatus);
pipe("KILL:%d", GetCurrentProcessId());
log_free();
}
else {
DWORD PID = pid_from_process_handle(ProcessHandle);
if (is_protected_pid(PID)) {
ret = STATUS_ACCESS_DENIED;
LOQ_ntstatus("process", "ph", "ProcessHandle", ProcessHandle, "ExitCode", ExitStatus);
return ret;
}
else {
LOQ_ntstatus("process", "ph", "ProcessHandle", ProcessHandle, "ExitCode", ExitStatus);
}
pipe("KILL:%d", PID);
}
set_lasterrors(&lasterror);
ret = Old_NtTerminateProcess(ProcessHandle, ExitStatus);
return ret;
}
extern void file_write(HANDLE file_handle);
HOOKDEF(NTSTATUS, WINAPI, NtCreateSection,
__out PHANDLE SectionHandle,
__in ACCESS_MASK DesiredAccess,
__in_opt POBJECT_ATTRIBUTES ObjectAttributes,
__in_opt PLARGE_INTEGER MaximumSize,
__in ULONG SectionPageProtection,
__in ULONG AllocationAttributes,
__in_opt HANDLE FileHandle
) {
NTSTATUS ret = Old_NtCreateSection(SectionHandle, DesiredAccess,
ObjectAttributes, MaximumSize, SectionPageProtection,
AllocationAttributes, FileHandle);
LOQ_ntstatus("process", "Phop", "SectionHandle", SectionHandle,
"DesiredAccess", DesiredAccess, "ObjectAttributes", ObjectAttributes ? ObjectAttributes->ObjectName : NULL,
"FileHandle", FileHandle);
if (NT_SUCCESS(ret) && FileHandle && (DesiredAccess & SECTION_MAP_WRITE)) {
file_write(FileHandle);
}
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtOpenSection,
__out PHANDLE SectionHandle,
__in ACCESS_MASK DesiredAccess,
__in POBJECT_ATTRIBUTES ObjectAttributes
) {
NTSTATUS ret = Old_NtOpenSection(SectionHandle, DesiredAccess,
ObjectAttributes);
LOQ_ntstatus("process", "Ppo", "SectionHandle", SectionHandle, "DesiredAccess", DesiredAccess,
"ObjectAttributes", ObjectAttributes ? ObjectAttributes->ObjectName : NULL);
return ret;
}
HOOKDEF(BOOL, WINAPI, ShellExecuteExW,
__inout SHELLEXECUTEINFOW *pExecInfo
) {
BOOL ret = Old_ShellExecuteExW(pExecInfo);
if (pExecInfo->lpFile && lstrlenW(pExecInfo->lpFile) > 2 &&
pExecInfo->lpFile[1] == L':' && pExecInfo->lpFile[2] == L'\\') {
LOQ_bool("process", "Fui", "FilePath", pExecInfo->lpFile,
"Parameters", pExecInfo->lpParameters, "Show", pExecInfo->nShow);
} else {
LOQ_bool("process", "uui", "FilePath", pExecInfo->lpFile,
"Parameters", pExecInfo->lpParameters, "Show", pExecInfo->nShow);
}
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtUnmapViewOfSection,
_In_ HANDLE ProcessHandle,
_In_opt_ PVOID BaseAddress
) {
SIZE_T map_size = 0; MEMORY_BASIC_INFORMATION mbi;
DWORD pid = pid_from_process_handle(ProcessHandle);
DWORD protect = PAGE_READWRITE;
NTSTATUS ret;
if (VirtualQueryEx(ProcessHandle, BaseAddress, &mbi,
sizeof(mbi)) == sizeof(mbi)) {
map_size = mbi.RegionSize;
protect = mbi.Protect;
}
ret = Old_NtUnmapViewOfSection(ProcessHandle, BaseAddress);
if (pid != GetCurrentProcessId() || protect != PAGE_READWRITE) {
LOQ_ntstatus("process", "ppp", "ProcessHandle", ProcessHandle, "BaseAddress", BaseAddress,
"RegionSize", map_size);
}
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtMapViewOfSection,
_In_ HANDLE SectionHandle,
_In_ HANDLE ProcessHandle,
__inout PVOID *BaseAddress,
_In_ ULONG_PTR ZeroBits,
_In_ SIZE_T CommitSize,
__inout PLARGE_INTEGER SectionOffset,
__inout PSIZE_T ViewSize,
__in UINT InheritDisposition,
__in ULONG AllocationType,
__in ULONG Win32Protect
) {
NTSTATUS ret = Old_NtMapViewOfSection(SectionHandle, ProcessHandle,
BaseAddress, ZeroBits, CommitSize, SectionOffset, ViewSize,
InheritDisposition, AllocationType, Win32Protect);
DWORD pid = pid_from_process_handle(ProcessHandle);
if ((pid != GetCurrentProcessId()) || Win32Protect != PAGE_READWRITE)
LOQ_ntstatus("process", "ppPpPhs", "SectionHandle", SectionHandle,
"ProcessHandle", ProcessHandle, "BaseAddress", BaseAddress,
"SectionOffset", SectionOffset, "ViewSize", ViewSize, "Win32Protect", Win32Protect, "StackPivoted", is_stack_pivoted() ? "yes" : "no");
if (NT_SUCCESS(ret)) {
if (pid != GetCurrentProcessId()) {
pipe("PROCESS:%d:%d", is_suspended(pid, 0), pid);
disable_sleep_skip();
}
}
return ret;
}
// it's not safe to call pipe() in this hook until we replace all uses of snprintf in pipe()
HOOKDEF(NTSTATUS, WINAPI, NtAllocateVirtualMemory,
__in HANDLE ProcessHandle,
__inout PVOID *BaseAddress,
__in ULONG_PTR ZeroBits,
__inout PSIZE_T RegionSize,
__in ULONG AllocationType,
__in ULONG Protect
) {
NTSTATUS ret = Old_NtAllocateVirtualMemory(ProcessHandle, BaseAddress,
ZeroBits, RegionSize, AllocationType, Protect);
if (ret != STATUS_CONFLICTING_ADDRESSES && (Protect != PAGE_READWRITE || GetCurrentProcessId() != our_getprocessid(ProcessHandle))) {
LOQ_ntstatus("process", "pPPhs", "ProcessHandle", ProcessHandle, "BaseAddress", BaseAddress,
"RegionSize", RegionSize, "Protection", Protect, "StackPivoted", is_stack_pivoted() ? "yes" : "no");
}
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtReadVirtualMemory,
__in HANDLE ProcessHandle,
__in LPCVOID BaseAddress,
__out LPVOID Buffer,
__in SIZE_T NumberOfBytesToRead,
__out_opt PSIZE_T NumberOfBytesRead
) {
NTSTATUS ret;
ENSURE_SIZET(NumberOfBytesRead);
ret = Old_NtReadVirtualMemory(ProcessHandle, BaseAddress, Buffer,
NumberOfBytesToRead, NumberOfBytesRead);
if (pid_from_process_handle(ProcessHandle) != GetCurrentProcessId()) {
LOQ_ntstatus("process", "ppB", "ProcessHandle", ProcessHandle, "BaseAddress", BaseAddress,
"Buffer", NumberOfBytesRead, Buffer);
}
return ret;
}
HOOKDEF(BOOL, WINAPI, ReadProcessMemory,
_In_ HANDLE hProcess,
_In_ LPCVOID lpBaseAddress,
_Out_ LPVOID lpBuffer,
_In_ SIZE_T nSize,
_Out_ PSIZE_T lpNumberOfBytesRead
) {
BOOL ret;
ENSURE_SIZET(lpNumberOfBytesRead);
ret = Old_ReadProcessMemory(hProcess, lpBaseAddress, lpBuffer,
nSize, lpNumberOfBytesRead);
if (pid_from_process_handle(hProcess) != GetCurrentProcessId()) {
LOQ_bool("process", "ppB", "ProcessHandle", hProcess, "BaseAddress", lpBaseAddress,
"Buffer", lpNumberOfBytesRead, lpBuffer);
}
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtWriteVirtualMemory,
__in HANDLE ProcessHandle,
__in LPVOID BaseAddress,
__in LPCVOID Buffer,
__in SIZE_T NumberOfBytesToWrite,
__out_opt PSIZE_T NumberOfBytesWritten
) {
NTSTATUS ret;
DWORD pid;
ENSURE_SIZET(NumberOfBytesWritten);
ret = Old_NtWriteVirtualMemory(ProcessHandle, BaseAddress, Buffer,
NumberOfBytesToWrite, NumberOfBytesWritten);
pid = pid_from_process_handle(ProcessHandle);
if (pid != GetCurrentProcessId()) {
LOQ_ntstatus("process", "ppBhs", "ProcessHandle", ProcessHandle, "BaseAddress", BaseAddress,
"Buffer", NumberOfBytesWritten, Buffer, "BufferLength", *NumberOfBytesWritten, "StackPivoted", is_stack_pivoted() ? "yes" : "no");
if (NT_SUCCESS(ret)) {
pipe("PROCESS:%d:%d", is_suspended(pid, 0), pid);
disable_sleep_skip();
}
}
return ret;
}
HOOKDEF(BOOL, WINAPI, WriteProcessMemory,
_In_ HANDLE hProcess,
_In_ LPVOID lpBaseAddress,
_In_ LPCVOID lpBuffer,
_In_ SIZE_T nSize,
_Out_ PSIZE_T lpNumberOfBytesWritten
) {
BOOL ret;
DWORD pid;
ENSURE_SIZET(lpNumberOfBytesWritten);
ret = Old_WriteProcessMemory(hProcess, lpBaseAddress, lpBuffer,
nSize, lpNumberOfBytesWritten);
pid = pid_from_process_handle(hProcess);
if (pid != GetCurrentProcessId()) {
LOQ_bool("process", "ppBhs", "ProcessHandle", hProcess, "BaseAddress", lpBaseAddress,
"Buffer", lpNumberOfBytesWritten, lpBuffer, "BufferLength", *lpNumberOfBytesWritten, "StackPivoted", is_stack_pivoted() ? "yes" : "no");
if (ret) {
pipe("PROCESS:%d:%d", is_suspended(pid, 0), pid);
disable_sleep_skip();
}
}
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtWow64ReadVirtualMemory64,
__in HANDLE ProcessHandle,
__in_opt LARGE_INTEGER BaseAddress,
__out PVOID Buffer,
__in LARGE_INTEGER BufferSize,
__out_opt PLARGE_INTEGER NumberOfBytesRead
) {
NTSTATUS ret;
DWORD pid;
ENSURE_LARGE_INTEGER(NumberOfBytesRead);
ret = Old_NtWow64ReadVirtualMemory64(ProcessHandle, BaseAddress, Buffer, BufferSize, NumberOfBytesRead);
pid = pid_from_process_handle(ProcessHandle);
LOQ_ntstatus("process", "pxb", "ProcessHandle", ProcessHandle, "BaseAddress", BaseAddress,
"Buffer", NumberOfBytesRead->LowPart, Buffer);
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtWow64WriteVirtualMemory64,
__in HANDLE ProcessHandle,
__in_opt LARGE_INTEGER BaseAddress,
__in PVOID Buffer,
__in LARGE_INTEGER BufferSize,
__out_opt PLARGE_INTEGER NumberOfBytesWritten
) {
BOOL ret;
DWORD pid;
ENSURE_LARGE_INTEGER(NumberOfBytesWritten);
ret = Old_NtWow64WriteVirtualMemory64(ProcessHandle, BaseAddress, Buffer, BufferSize, NumberOfBytesWritten);
pid = pid_from_process_handle(ProcessHandle);
if (pid != GetCurrentProcessId()) {
LOQ_bool("process", "pxbhs", "ProcessHandle", ProcessHandle, "BaseAddress", BaseAddress,
"Buffer", NumberOfBytesWritten->LowPart, Buffer, "BufferLength", NumberOfBytesWritten->LowPart, "StackPivoted", is_stack_pivoted() ? "yes" : "no");
if (ret) {
pipe("PROCESS:%d:%d", is_suspended(pid, 0), pid);
disable_sleep_skip();
}
}
return ret;
}
/* need to keep in mind we might end up being called in either of the two below functions while some
critical DLL code is protected RW by some poorly-written malware that doesn't care about reliability with
concurrent thread execution
*/
HOOKDEF(NTSTATUS, WINAPI, NtProtectVirtualMemory,
IN HANDLE ProcessHandle,
IN OUT PVOID *BaseAddress,
IN OUT PSIZE_T NumberOfBytesToProtect,
IN ULONG NewAccessProtection,
OUT PULONG OldAccessProtection
) {
NTSTATUS ret;
MEMORY_BASIC_INFORMATION meminfo;
if (NewAccessProtection == PAGE_EXECUTE_READ && BaseAddress && NumberOfBytesToProtect &&
GetCurrentProcessId() == our_getprocessid(ProcessHandle) && is_in_dll_range((ULONG_PTR)*BaseAddress))
restore_hooks_on_range((ULONG_PTR)*BaseAddress, (ULONG_PTR)*BaseAddress + *NumberOfBytesToProtect);
ret = Old_NtProtectVirtualMemory(ProcessHandle, BaseAddress,
NumberOfBytesToProtect, NewAccessProtection, OldAccessProtection);
/* Don't log an uninteresting case */
if (OldAccessProtection && *OldAccessProtection == NewAccessProtection)
return ret;
memset(&meminfo, 0, sizeof(meminfo));
if (NT_SUCCESS(ret)) {
lasterror_t lasterrors;
get_lasterrors(&lasterrors);
VirtualQueryEx(ProcessHandle, *BaseAddress, &meminfo, sizeof(meminfo));
set_lasterrors(&lasterrors);
}
if (NewAccessProtection == PAGE_EXECUTE_READWRITE && GetCurrentProcessId() == our_getprocessid(ProcessHandle) &&
(ULONG_PTR)meminfo.AllocationBase >= get_stack_bottom() && (((ULONG_PTR)meminfo.AllocationBase + meminfo.RegionSize) <= get_stack_top())) {
LOQ_ntstatus("process", "pPPhhHss", "ProcessHandle", ProcessHandle, "BaseAddress", BaseAddress,
"NumberOfBytesProtected", NumberOfBytesToProtect,
"MemoryType", meminfo.Type,
"NewAccessProtection", NewAccessProtection,
"OldAccessProtection", OldAccessProtection, "StackPivoted", is_stack_pivoted() ? "yes" : "no", "IsStack", "yes");
}
else {
LOQ_ntstatus("process", "pPPhhHs", "ProcessHandle", ProcessHandle, "BaseAddress", BaseAddress,
"NumberOfBytesProtected", NumberOfBytesToProtect,
"MemoryType", meminfo.Type,
"NewAccessProtection", NewAccessProtection,
"OldAccessProtection", OldAccessProtection, "StackPivoted", is_stack_pivoted() ? "yes" : "no");
}
return ret;
}
HOOKDEF(BOOL, WINAPI, VirtualProtectEx,
__in HANDLE hProcess,
__in LPVOID lpAddress,
__in SIZE_T dwSize,
__in DWORD flNewProtect,
__out PDWORD lpflOldProtect
) {
BOOL ret;
MEMORY_BASIC_INFORMATION meminfo;
if (flNewProtect == PAGE_EXECUTE_READ && GetCurrentProcessId() == our_getprocessid(hProcess) &&
is_in_dll_range((ULONG_PTR)lpAddress))
restore_hooks_on_range((ULONG_PTR)lpAddress, (ULONG_PTR)lpAddress + dwSize);
ret = Old_VirtualProtectEx(hProcess, lpAddress, dwSize, flNewProtect,
lpflOldProtect);
/* Don't log an uninteresting case */
if (lpflOldProtect && *lpflOldProtect == flNewProtect)
return ret;
memset(&meminfo, 0, sizeof(meminfo));
if (ret) {
lasterror_t lasterrors;
get_lasterrors(&lasterrors);
VirtualQueryEx(hProcess, lpAddress, &meminfo, sizeof(meminfo));
set_lasterrors(&lasterrors);
}
if (flNewProtect == PAGE_EXECUTE_READWRITE && GetCurrentProcessId() == our_getprocessid(hProcess) &&
(ULONG_PTR)meminfo.AllocationBase >= get_stack_bottom() && (((ULONG_PTR)meminfo.AllocationBase + meminfo.RegionSize) <= get_stack_top())) {
LOQ_bool("process", "ppphhHss", "ProcessHandle", hProcess, "Address", lpAddress,
"Size", dwSize, "MemType", meminfo.Type, "Protection", flNewProtect, "OldProtection", lpflOldProtect, "StackPivoted", is_stack_pivoted() ? "yes" : "no", "IsStack", "yes");
}
else {
LOQ_bool("process", "ppphhHs", "ProcessHandle", hProcess, "Address", lpAddress,
"Size", dwSize, "MemType", meminfo.Type, "Protection", flNewProtect, "OldProtection", lpflOldProtect, "StackPivoted", is_stack_pivoted() ? "yes" : "no");
}
return ret;
}
// it's not safe to call pipe() in this hook until we replace all uses of snprintf in pipe()
HOOKDEF(NTSTATUS, WINAPI, NtFreeVirtualMemory,
IN HANDLE ProcessHandle,
IN PVOID *BaseAddress,
IN OUT PSIZE_T RegionSize,
IN ULONG FreeType
) {
NTSTATUS ret = Old_NtFreeVirtualMemory(ProcessHandle, BaseAddress,
RegionSize, FreeType);
if (GetCurrentProcessId() != our_getprocessid(ProcessHandle)) {
LOQ_ntstatus("process", "pPPh", "ProcessHandle", ProcessHandle, "BaseAddress", BaseAddress,
"RegionSize", RegionSize, "FreeType", FreeType);
}
return ret;
}
HOOKDEF(BOOL, WINAPI, VirtualFreeEx,
__in HANDLE hProcess,
__in LPVOID lpAddress,
__in SIZE_T dwSize,
__in DWORD dwFreeType
) {
BOOL ret = Old_VirtualFreeEx(hProcess, lpAddress, dwSize, dwFreeType);
LOQ_bool("process", "ppph", "ProcessHandle", hProcess, "Address", lpAddress,
"Size", dwSize, "FreeType", dwFreeType);
return ret;
}
HOOKDEF(int, CDECL, system,
const char *command
) {
int ret = Old_system(command);
LOQ_nonnegone("process", "s", "Command", command);
return ret;
}
HOOKDEF(BOOL, WINAPI, WaitForDebugEvent,
__out LPDEBUG_EVENT lpDebugEvent,
__in DWORD dwMilliseconds
) {
BOOL ret = Old_WaitForDebugEvent(lpDebugEvent, dwMilliseconds);
if (!ret)
return ret;
switch (lpDebugEvent->dwDebugEventCode) {
case CREATE_THREAD_DEBUG_EVENT:
LOQ_bool("process", "iiip", "EventCode", lpDebugEvent->dwDebugEventCode, "ProcessId", lpDebugEvent->dwProcessId, "ThreadId", lpDebugEvent->dwThreadId, "StartAddress", lpDebugEvent->u.CreateThread.lpStartAddress);
break;
case LOAD_DLL_DEBUG_EVENT:
// we could continue ourselves here and skip notification to the malware of cuckoomon loading
default:
LOQ_bool("process", "iii", "EventCode", lpDebugEvent->dwDebugEventCode, "ProcessId", lpDebugEvent->dwProcessId, "ThreadId", lpDebugEvent->dwThreadId);
}
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, DbgUiWaitStateChange,
__out PDBGUI_WAIT_STATE_CHANGE StateChange,
__in_opt PLARGE_INTEGER Timeout)
{
NTSTATUS ret = Old_DbgUiWaitStateChange(StateChange, Timeout);
if (NT_SUCCESS(ret)) {
switch (StateChange->NewState) {
case DbgCreateThreadStateChange:
LOQ_ntstatus("process", "iiip", "NewState", StateChange->NewState, "ProcessId", pid_from_process_handle(StateChange->AppClientId.UniqueProcess), "ThreadId", tid_from_thread_handle(StateChange->AppClientId.UniqueThread), "StartAddress", StateChange->StateInfo.CreateThread.NewThread.StartAddress);
break;
case DbgLoadDllStateChange:
{
wchar_t *fname = calloc(32768, sizeof(wchar_t));
path_from_handle(StateChange->StateInfo.LoadDll.FileHandle, fname, 32768);
// we could continue ourselves here and skip notification to the malware of cuckoomon loading
LOQ_ntstatus("process", "iiiF", "NewState", StateChange->NewState, "ProcessId", pid_from_process_handle(StateChange->AppClientId.UniqueProcess), "ThreadId", tid_from_thread_handle(StateChange->AppClientId.UniqueThread), "DllPath", fname);
free(fname);
}
break;
default:
LOQ_ntstatus("process", "iii", "NewState", StateChange->NewState, "ProcessId", pid_from_process_handle(StateChange->AppClientId.UniqueProcess), "ThreadId", tid_from_thread_handle(StateChange->AppClientId.UniqueThread));
}
}
return ret;
}
HOOKDEF_NOTAIL(WINAPI, RtlDispatchException,
__in PEXCEPTION_RECORD ExceptionRecord,
__in PCONTEXT Context)
{
#ifndef _WIN64
if (ExceptionRecord && (ULONG_PTR)ExceptionRecord->ExceptionAddress >= g_our_dll_base && (ULONG_PTR)ExceptionRecord->ExceptionAddress < (g_our_dll_base + g_our_dll_size)) {
char buf[160];
ULONG_PTR seh = 0;
DWORD *tebtmp = (DWORD *)NtCurrentTeb();
if (tebtmp[0] != 0xffffffff)
seh = ((DWORD *)tebtmp[0])[1];
if (seh < g_our_dll_base || seh >= (g_our_dll_base + g_our_dll_size)) {
_snprintf(buf, sizeof(buf), "Exception reported at offset 0x%x in cuckoomon itself while accessing 0x%x from hook %s", (DWORD)((ULONG_PTR)ExceptionRecord->ExceptionAddress - g_our_dll_base), ExceptionRecord->ExceptionInformation[1], hook_info()->current_hook ? hook_info()->current_hook->funcname : "unknown");
log_anomaly("cuckoocrash", buf);
}
}
#endif
// flush logs prior to handling of an exception without having to register a vectored exception handler
log_flush();
return 0;
}
HOOKDEF_NOTAIL(WINAPI, NtRaiseException,
__in PEXCEPTION_RECORD ExceptionRecord,
__in PCONTEXT Context,
__in BOOLEAN SearchFrames
) {
EXCEPTION_POINTERS exc;
exc.ContextRecord = Context;
exc.ExceptionRecord = ExceptionRecord;
if (g_config.debug)
cuckoomon_exception_handler(&exc);
return 0;
}