forked from spender-sandbox/cuckoomon-modified
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hook_sync.c
146 lines (131 loc) · 4.76 KB
/
hook_sync.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
/*
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"
HOOKDEF(NTSTATUS, WINAPI, NtCreateMutant,
__out PHANDLE MutantHandle,
__in ACCESS_MASK DesiredAccess,
__in_opt POBJECT_ATTRIBUTES ObjectAttributes,
__in BOOLEAN InitialOwner
) {
NTSTATUS ret = Old_NtCreateMutant(MutantHandle, DesiredAccess,
ObjectAttributes, InitialOwner);
LOQ_ntstatus("synchronization", "Poi", "Handle", MutantHandle,
"MutexName", unistr_from_objattr(ObjectAttributes),
"InitialOwner", InitialOwner);
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtOpenMutant,
__out PHANDLE MutantHandle,
__in ACCESS_MASK DesiredAccess,
__in POBJECT_ATTRIBUTES ObjectAttributes
) {
NTSTATUS ret = Old_NtOpenMutant(MutantHandle, DesiredAccess,
ObjectAttributes);
LOQ_ntstatus("synchronization", "Po", "Handle", MutantHandle,
"MutexName", unistr_from_objattr(ObjectAttributes));
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtCreateEvent,
__out PHANDLE EventHandle,
__in ACCESS_MASK DesiredAccess,
__in_opt POBJECT_ATTRIBUTES ObjectAttributes,
__in DWORD EventType,
__in BOOLEAN InitialState
) {
NTSTATUS ret = Old_NtCreateEvent(EventHandle, DesiredAccess,
ObjectAttributes, EventType, InitialState);
UNICODE_STRING *eventname = unistr_from_objattr(ObjectAttributes);
if (eventname && eventname->Length) {
LOQ_ntstatus("synchronization", "Poii", "Handle", EventHandle,
"EventName", eventname, "EventType", EventType, "InitialState", InitialState);
}
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtOpenEvent,
__out PHANDLE EventHandle,
__in ACCESS_MASK DesiredAccess,
__in POBJECT_ATTRIBUTES ObjectAttributes
) {
NTSTATUS ret = Old_NtOpenEvent(EventHandle, DesiredAccess,
ObjectAttributes);
LOQ_ntstatus("synchronization", "Po", "Handle", EventHandle,
"EventName", unistr_from_objattr(ObjectAttributes));
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtCreateNamedPipeFile,
OUT PHANDLE NamedPipeFileHandle,
IN ACCESS_MASK DesiredAccess,
IN POBJECT_ATTRIBUTES ObjectAttributes,
OUT PIO_STATUS_BLOCK IoStatusBlock,
IN ULONG ShareAccess,
IN ULONG CreateDisposition,
IN ULONG CreateOptions,
IN BOOLEAN WriteModeMessage,
IN BOOLEAN ReadModeMessage,
IN BOOLEAN NonBlocking,
IN ULONG MaxInstances,
IN ULONG InBufferSize,
IN ULONG OutBufferSize,
IN PLARGE_INTEGER DefaultTimeOut
) {
NTSTATUS ret = Old_NtCreateNamedPipeFile(NamedPipeFileHandle,
DesiredAccess, ObjectAttributes, IoStatusBlock, ShareAccess,
CreateDisposition, CreateOptions, WriteModeMessage, ReadModeMessage,
NonBlocking, MaxInstances, InBufferSize, OutBufferSize,
DefaultTimeOut);
LOQ_ntstatus("synchronization", "PhOi", "NamedPipeHandle", NamedPipeFileHandle,
"DesiredAccess", DesiredAccess, "PipeName", ObjectAttributes,
"ShareAccess", ShareAccess);
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtAddAtom,
IN PWCHAR AtomName,
IN ULONG AtomNameLength,
OUT PRTL_ATOM Atom
) {
NTSTATUS ret = Old_NtAddAtom(AtomName, AtomNameLength, Atom);
LOQ_ntstatus("synchronization", "uh", "AtomName", AtomName, "Atom", *Atom);
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtDeleteAtom,
IN RTL_ATOM Atom
) {
NTSTATUS ret = Old_NtDeleteAtom(Atom);
LOQ_ntstatus("synchronization", "h", "Atom", Atom);
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtFindAtom,
IN PWCHAR AtomName,
IN ULONG AtomNameLength,
OUT PRTL_ATOM Atom OPTIONAL
) {
ENSURE_RTL_ATOM(Atom);
NTSTATUS ret = Old_NtFindAtom(AtomName, AtomNameLength, Atom);
LOQ_ntstatus("synchronization", "uh", "AtomName", AtomName, "Atom", *Atom);
return ret;
}
HOOKDEF(NTSTATUS, WINAPI, NtAddAtomEx,
IN PWCHAR AtomName,
IN ULONG AtomNameLength,
OUT PRTL_ATOM Atom,
IN PVOID Unknown
) {
NTSTATUS ret = Old_NtAddAtomEx(AtomName, AtomNameLength, Atom, Unknown);
LOQ_ntstatus("synchronization", "uh", "AtomName", AtomName, "Atom", *Atom);
return ret;
}