forked from cuckoosandbox/cuckoomon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hook_sync.c
78 lines (70 loc) · 2.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
/*
Cuckoo Sandbox - Automated Malware Analysis
Copyright (C) 2010-2014 Cuckoo Sandbox Developers
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 <windows.h>
#include "hooking.h"
#include "ntapi.h"
#include "log.h"
static IS_SUCCESS_NTSTATUS();
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("Pol", "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("Po", "Handle", MutantHandle,
"MutexName", 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("PpOl", "NamedPipeHandle", NamedPipeFileHandle,
"DesiredAccess", DesiredAccess, "PipeName", ObjectAttributes,
"ShareAccess", ShareAccess);
return ret;
}