-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathinline_syscall.hpp
292 lines (201 loc) · 5.7 KB
/
inline_syscall.hpp
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
#pragma once
#include <Windows.h>
//#define _ALLOW_MONITOR
#define IS_ADDRESS_NOT_FOUND -1
#define IS_CALLBACK_KILL_FAILURE -2
#define IS_INTEGRITY_STUB_FAILURE -3
#define IS_MODULE_NOT_FOUND -4
#define IS_ALLOCATION_FAILURE -5
#define IS_INIT_NOT_APPLIED -6
#define IS_SUCCESS 0
#define NT_SUCCESS(Status) (((NTSTATUS)(Status)) >= 0)
HINSTANCE hSubsystemInstances[ 2 ];
class inline_syscall
{
public:
inline_syscall( );
void unload( );
void callback( );
void set_error( int error_code ) {
last_error = error_code;
}
int get_error( ) {
return last_error;
}
bool is_init( ) {
return initialized;
}
UCHAR* get_stub( ) {
return syscall_stub;
}
template <typename returnType, typename ...args>
returnType invoke( LPCSTR ServiceName, args... arguments );
private:
int last_error;
bool initialized;
UCHAR* syscall_stub;
typedef NTSTATUS __stdcall pNtSetInformationProcess(
HANDLE ProcessHandle,
PROCESS_INFORMATION_CLASS ProcessInformationClass,
PVOID ProcessInformation,
ULONG ProcessInformationLength
);
struct PROCESS_INSTRUMENTATION_CALLBACK_INFORMATION
{
ULONG Version;
ULONG Reserved;
PVOID Callback;
};
};
inline_syscall::inline_syscall( ) {
NTSTATUS Status;
UINT i;
initialized = 0;
syscall_stub = 0;
last_error = IS_INIT_NOT_APPLIED;
//
// Fill hSubsystemInstances
//
hSubsystemInstances[ 0 ] = LoadLibraryA( "ntdll.dll" );
hSubsystemInstances[ 1 ] = LoadLibraryA( "win32u.dll" );
//
// Could not load the modules??
//
for( i = 0; i < sizeof hSubsystemInstances / sizeof HINSTANCE; i++ )
if( hSubsystemInstances[ i ] == nullptr )
{
last_error = IS_MODULE_NOT_FOUND;
return;
}
//
// Setup the system call stub
// as in NTDLL.DLL services
//
syscall_stub = ( UCHAR* )VirtualAlloc( NULL, 21, MEM_COMMIT | MEM_RESERVE, PAGE_EXECUTE_READWRITE );
if( syscall_stub == nullptr )
{
last_error = IS_CALLBACK_KILL_FAILURE;
return;
}
#ifdef _M_X64
//
// Syscall stub shellcode
//
memcpy( syscall_stub, "\x4C\x8B\xD1\xB8\x00\x00\x00\x00\x0F\x05\xC3", 11 );
#endif
//
// Try killing callbacks
//
#ifndef _ALLOW_MONITOR
callback( );
if( last_error != IS_SUCCESS )
return;
#endif
last_error = IS_SUCCESS;
initialized = 1;
}
void inline_syscall::callback( ) {
//
// Kill any system call callback
//
NTSTATUS Status;
pNtSetInformationProcess* NtSetInformationProcess;
PROCESS_INSTRUMENTATION_CALLBACK_INFORMATION SyscallCallback;
NtSetInformationProcess = ( pNtSetInformationProcess* )GetProcAddress( hSubsystemInstances[ 0 ], "NtSetInformationProcess" );
if( NtSetInformationProcess == nullptr )
{
inline_syscall::set_error( IS_ADDRESS_NOT_FOUND );
return;
}
//
// Disable any callbacks caused by the syscall instruction
// ( Prevents monitoring of the syscall )
//
SyscallCallback.Reserved = 0;
SyscallCallback.Version = 0;
SyscallCallback.Callback = NULL;
Status = NtSetInformationProcess(
GetCurrentProcess( ),
( PROCESS_INFORMATION_CLASS )40,
&SyscallCallback,
sizeof( SyscallCallback ) );
if( !NT_SUCCESS( Status ) )
{
inline_syscall::set_error( IS_CALLBACK_KILL_FAILURE );
return;
}
inline_syscall::set_error( IS_SUCCESS );
}
VOID inline_syscall::unload( ) {
if( inline_syscall::syscall_stub == nullptr )
return;
memset( inline_syscall::syscall_stub, 0, 21 );
VirtualFree( inline_syscall::syscall_stub, 0, MEM_RELEASE );
}
template <typename returnType, typename ...args>
returnType inline_syscall::invoke( LPCSTR ServiceName, args... arguments ) {
NTSTATUS Status;
UCHAR* FunctionAddress;
INT SystemCallIndex;
UINT i;
if( !inline_syscall::initialized ) // Initialization not applied?
{
inline_syscall::set_error( IS_INIT_NOT_APPLIED );
return IS_INIT_NOT_APPLIED;
}
#ifndef _ALLOW_MONITOR
//
// Kill monitoring callback
//
inline_syscall::callback( );
#endif
typedef returnType __stdcall NtFunction( args... );
NtFunction* Function = ( NtFunction* )inline_syscall::syscall_stub;
for( i = 0; i < sizeof hSubsystemInstances / sizeof HINSTANCE; ++i )
{
//
// Get the address
//
FunctionAddress = ( UCHAR* )GetProcAddress( hSubsystemInstances[ i ], ServiceName );
//
// Prepare to execute
//
if( FunctionAddress != nullptr )
{
#ifdef _M_X64
//
// Small check against modified stubs
//
if( *( UINT* )FunctionAddress != 0xB8D18B4C ) //mov r10, rcx \ mov eax, index
{
inline_syscall::set_error( IS_INTEGRITY_STUB_FAILURE );
return IS_INTEGRITY_STUB_FAILURE;
}
//
// NtXxX + 0x4 = Syscall Index (unsigned int)
//
SystemCallIndex = ( UINT )FunctionAddress[ 4 ];
memcpy( inline_syscall::get_stub( ) + 0x4, &SystemCallIndex, sizeof( UINT ) );
//
// If i points to win32k.sys call
// copy the whole stub because x86 contains additional opcodes (jne xxx)
//
if( i == 1 )
memcpy( inline_syscall::get_stub( ), FunctionAddress, 21 );
#else
//
// Small check against modified stubs
// I'd call it an integrity check because we copy the whole stub
//
if( FunctionAddress[ 0 ] != 0xB8 &&
FunctionAddress[ 5 ] != 0xBA ) // mov eax, index \x??\x??\x??\x?? mov edx, KiFastSystemCall
return ( returnType )IS_INTEGRITY_STUB_FAILURE;
memcpy( inline_syscall::get_stub( ), FunctionAddress, 15 );
#endif
inline_syscall::set_error( IS_SUCCESS );
return Function( arguments... );
}
}
inline_syscall::set_error( IS_MODULE_NOT_FOUND );
return IS_MODULE_NOT_FOUND;
}