-
Notifications
You must be signed in to change notification settings - Fork 11
/
Toolset.c
433 lines (386 loc) · 12.3 KB
/
Toolset.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
#include "Main.h"
#include "Toolset.h"
_declspec(naked) void CrashDriver( void )
{
_asm
{
mov ebx, 0xDEADBEEF;
mov esp, 0xDEADBEEF;
sub ebp, esp;
mov bl, 0;
div ebx;
xor al, al;
xor ecx, ecx;
jmp ebx;
}
}
BOOLEAN ModuleCheck( BYTE* pFunction, const char *pszModuleName, char *pszHookingModule )
{
char szModule[512];
BYTE bDetourCheck[2];
// TODO: Extend detour check
GetFunctionModuleLocation( pFunction, szModule );
RtlCopyMemory( bDetourCheck, pFunction, sizeof(bDetourCheck) );
if( !strcmp(pszModuleName, szModule) )
{
// Function is in the supposed module
// now additionaly check for simple jmp detour
if( bDetourCheck[0] == 0xE9 )
{
if( pszHookingModule != NULL )
strcpy( pszHookingModule, "DETOUR_NO_MODULE" );
return FALSE; // Function is detoured
}
else
return TRUE;
}
if( pszHookingModule != NULL )
strcpy( pszHookingModule, szModule );
return FALSE; // Function is not in the supposed module
}
/******************************************/
/* Function: GetServiceDescriptorTableShadow
/* Description: Locates the address of ServiceDescriptorTableShadow
/* Params: ppServiceTable - Will contain the shadow table on success
or will point to NULL on failure
/* Return: FALSE on failure, TRUE on success
/******************************************/
BOOLEAN GetServiceDescriptorTableShadow( OUT PServiceDescriptorTableEntry_t *ppServiceTable )
{
BYTE* p = (BYTE*)KeAddSystemServiceTable;
ULONG uCount = 0;
DWORD dwTable = 0;
for( ; uCount < PAGE_SIZE; uCount++, p++ )
{
__try
{
dwTable = *(DWORD*)p;
if( MmIsAddressValid((PVOID)dwTable) )
{
if( memcmp((PVOID)dwTable, &KeServiceDescriptorTable, 16) == 0 )
{
if( (PVOID)dwTable == &KeServiceDescriptorTable )
{
continue;
}
break;
}
}
}
__except( EXCEPTION_EXECUTE_HANDLER )
{
dwTable = 0;
break;
}
}
if( dwTable != 0 )
{
*ppServiceTable = (PServiceDescriptorTableEntry_t)dwTable;
return TRUE;
}
*ppServiceTable = NULL;
return FALSE;
}
BOOLEAN GetModuleNameByBase( IN PVOID pBase, OUT PCHAR pszModuleName, OUT OPTIONAL PDWORD pdwImageSize )
{
NTSTATUS ntStatus = STATUS_SUCCESS;
PSYSTEM_MODULE_INFORMATION pModuleInformation = NULL;
ULONG uReturnLength = 0, uModuleInformationCount = 0, uCount = 0;
PSYSTEM_MODULE_ENTRY pModule = NULL;
DWORD dwImageSize = 0, dwImageBase = 0;
unsigned int iStrLen = 0;
char *pszImageName = NULL;
DWORD dwCheckBase = (DWORD)pBase;
if( !pBase || !pszModuleName )
return FALSE;
__try
{
ntStatus = ZwQuerySystemInformation( SystemModuleInformation, (PVOID)&pModuleInformation, 0,
&uReturnLength );
if( !uReturnLength )
{
KdPrint((""__FUNCTION__": Error obtaining return length"));
return FALSE;
}
pModuleInformation = (PSYSTEM_MODULE_INFORMATION)ExAllocatePoolWithTag( NonPagedPool, uReturnLength*2,
'SMI1' );
if( !pModuleInformation )
{
KdPrint((""__FUNCTION__": Error allocating memory for SystemModuleInformation"));
return FALSE;
}
RtlZeroMemory( pModuleInformation, uReturnLength*2 );
ntStatus = ZwQuerySystemInformation( SystemModuleInformation, (PVOID)pModuleInformation, uReturnLength*2,
&uReturnLength );
if( !NT_SUCCESS(ntStatus) )
{
KdPrint((""__FUNCTION__": Error on ZwQuerySystemInformation"));
return FALSE;
}
pModule = ( (PSYSTEM_MODULE_INFORMATION)(pModuleInformation) )->Module;
for( ; uCount < ( (PSYSTEM_MODULE_INFORMATION)(pModuleInformation) )->Count; uCount++ )
{
dwImageSize = pModule[uCount].ModuleSize;
dwImageBase = (DWORD)pModule[uCount].ModuleBaseAddress;
if( dwCheckBase == dwImageBase )
{
pszImageName = (char*)pModule[uCount].ModuleName+pModule[uCount].ModuleNameOffset;
iStrLen = strlen(pszImageName);
strncpy( pszModuleName, pszImageName, iStrLen );
pszModuleName[iStrLen] = '\0';
ExFreePoolWithTag( pModuleInformation, 'SMI1' );
if( pdwImageSize != NULL )
{
*pdwImageSize = dwImageSize;
}
return TRUE;
}
}
// Module not found
iStrLen = strlen("unknown_module");
strncpy( pszModuleName, "unknown_module", iStrLen );
pszModuleName[iStrLen] = '\0';
ExFreePoolWithTag( pModuleInformation, 'SMI1' );
return TRUE;
}
__except( EXCEPTION_EXECUTE_HANDLER )
{
if( pModuleInformation )
ExFreePoolWithTag( pModuleInformation, 'SMI1' );
return FALSE;
}
}
/******************************************/
/* Function: GetFunctionModuleLocation
/* Description: Gets module in which a function is stored and stores its' name
or unknown_module if not found.
/* Params: pFunction - Pointer to the variable/function to scan for
pszModuleName - Module name will be stored in
/* Return: FALSE on failure, TRUE on success
/******************************************/
BOOLEAN GetFunctionModuleLocation( IN PVOID pFunction, OUT PCHAR pszModuleName )
{
NTSTATUS ntStatus = STATUS_SUCCESS;
PSYSTEM_MODULE_INFORMATION pModuleInformation = NULL;
ULONG uReturnLength = 0, uModuleInformationCount = 0, uCount = 0;
PSYSTEM_MODULE_ENTRY pModule = NULL;
DWORD dwImageSize = 0, dwImageBase = 0;
DWORD dwFunction = 0;
unsigned int iStrLen = 0;
char *pszImageName = NULL;
if( !pFunction || !pszModuleName )
return FALSE;
__try
{
dwFunction = (DWORD)pFunction;
ntStatus = ZwQuerySystemInformation( SystemModuleInformation, (PVOID)&pModuleInformation, 0,
&uReturnLength );
if( !uReturnLength )
{
KdPrint((""__FUNCTION__": Error obtaining return length"));
return FALSE;
}
pModuleInformation = (PSYSTEM_MODULE_INFORMATION)ExAllocatePoolWithTag( NonPagedPool, uReturnLength*2,
'SMI1' );
if( !pModuleInformation )
{
KdPrint((""__FUNCTION__": Error allocating memory for SystemModuleInformation"));
return FALSE;
}
RtlZeroMemory( pModuleInformation, uReturnLength*2 );
ntStatus = ZwQuerySystemInformation( SystemModuleInformation, (PVOID)pModuleInformation, uReturnLength*2,
&uReturnLength );
if( !NT_SUCCESS(ntStatus) )
{
KdPrint((""__FUNCTION__": Error on ZwQuerySystemInformation"));
return FALSE;
}
pModule = ( (PSYSTEM_MODULE_INFORMATION)(pModuleInformation) )->Module;
for( ; uCount < ( (PSYSTEM_MODULE_INFORMATION)(pModuleInformation) )->Count; uCount++ )
{
dwImageSize = pModule[uCount].ModuleSize;
dwImageBase = (DWORD)pModule[uCount].ModuleBaseAddress;
if( (dwFunction >= dwImageBase) && (dwFunction <= dwImageBase+dwImageSize) )
{
// Function lies in module range
pszImageName = (char*)pModule[uCount].ModuleName+pModule[uCount].ModuleNameOffset;
iStrLen = strlen(pszImageName);
strncpy( pszModuleName, pszImageName, iStrLen );
pszModuleName[iStrLen] = '\0';
ExFreePoolWithTag( pModuleInformation, 'SMI1' );
return TRUE;
}
}
// Module not found
iStrLen = strlen("unknown_module");
strncpy( pszModuleName, "unknown_module", iStrLen );
pszModuleName[iStrLen] = '\0';
ExFreePoolWithTag( pModuleInformation, 'SMI1' );
return TRUE;
}
__except( EXCEPTION_EXECUTE_HANDLER )
{
if( pModuleInformation )
ExFreePoolWithTag( pModuleInformation, 'SMI1' );
return FALSE;
}
}
/******************************************/
/* Function: KernelGetModuleBaseByPtr
/* Description: Gets base address of a module by a exported variable or function
/* Params: ptrInSection - Pointer to the variable/function
ptrExportedName - Name of the variable/function
/* Return: NULL on failure, Base address on success
/******************************************/
PVOID KernelGetModuleBaseByPtr( IN PVOID ptrInSection, IN PCHAR ptrExportedName )
{
PUCHAR p;
PIMAGE_DOS_HEADER dos;
PIMAGE_NT_HEADERS nt;
DWORD dwExportedAddr = 0;
p = (PUCHAR)((ULONG)ptrInSection & ~(PAGE_SIZE-1));
for(;p;p -= PAGE_SIZE) {
__try
{
dos = (PIMAGE_DOS_HEADER)p;
if(dos->e_magic != IMAGE_DOS_SIGNATURE) // MZ
continue;
nt = (PIMAGE_NT_HEADERS)((ULONG)dos + dos->e_lfanew);
if((ULONG)nt >= (ULONG)ptrInSection)
continue;
if((ULONG)nt <= (ULONG)dos)
continue;
if(nt->Signature != IMAGE_NT_SIGNATURE) // PE
continue;
if(!ptrExportedName) {
break;
} else {
ReadEAT( p, ptrExportedName, &dwExportedAddr );
if((DWORD)ptrInSection == dwExportedAddr) {
break;
}
}
p = NULL;
break;
}
__except(EXCEPTION_EXECUTE_HANDLER)
{
p = NULL;
break;
}
}
return p;
}
/******************************************/
/* Function: ReadEAT
/* Description: Gets the address of a function from the EAT of a speicifed module
/* Params: pBase - Base of the module to read from
pszFunction - Function name to scan for
pdwFunctionAddress - Function address will be stored in on success
/* Return: FALSE on failure, TRUE on success
/******************************************/
BOOLEAN ReadEAT( IN PVOID pBase, IN PCHAR pszFunction, OUT PULONG pdwFunctionAddress )
{
PIMAGE_DOS_HEADER pDosHeader = NULL;
PIMAGE_NT_HEADERS32 pNtHeader = NULL;
PIMAGE_EXPORT_DIRECTORY pExportDirectory = NULL;
ULONG *pdwAddressTable = NULL;
PCHAR *pszNameTable = NULL;
PWORD pwOrdinalTable = NULL;
PCHAR pszName = NULL;
ULONG uFunctionAddress = 0, lCount = 0, uSize = 0;
if( !pszFunction || !pdwFunctionAddress || !MmIsAddressValid(pBase) )
{
KdPrint((""__FUNCTION__": Base address for EAT read is not valid or parameter validation failed"));
return FALSE;
}
__try
{
pExportDirectory = (PIMAGE_EXPORT_DIRECTORY)RtlImageDirectoryEntryToData( pBase, TRUE, 0, &uSize );
if( !pExportDirectory )
return FALSE;
pdwAddressTable = (ULONG*)( (ULONG)pBase+pExportDirectory->AddressOfFunctions );
pszNameTable = (PCHAR*)( (ULONG)pBase+pExportDirectory->AddressOfNames );
pwOrdinalTable = (PWORD)( (ULONG)pBase+pExportDirectory->AddressOfNameOrdinals );
for( lCount = 0; lCount < pExportDirectory->NumberOfFunctions; lCount++ )
{
pszName = (PCHAR)( (ULONG)pBase+pszNameTable[lCount] ); // RVA to VA
if( !strcmp(pszName, pszFunction) )
{
uFunctionAddress = (ULONG)( (ULONG)pBase+pdwAddressTable[pwOrdinalTable[lCount]] );
KdPrint((""__FUNCTION__": Found EAT function %s at 0x%08x", pszName, uFunctionAddress));
*pdwFunctionAddress = uFunctionAddress;
return TRUE;
}
}
}
__except(EXCEPTION_EXECUTE_HANDLER)
{
*pdwFunctionAddress = 0;
return FALSE;
}
*pdwFunctionAddress = 0;
KdPrint((""__FUNCTION__": No EAT function found"));
return FALSE;
}
/******************************************/
/* Function: GetImageBaseFromName
/* Description: Gets the base of an memory image by name
/* Params: pszImage - Name of the image to scan for
pdwImageBase - On success, this will contain the image base
pdwImageSize - On success, this will contain the image size
/* Return: FALSE on failure, TRUE on success
/******************************************/
BOOLEAN GetImageBaseFromName( IN PCHAR pszImage, OUT PULONG pdwImageBase, OUT OPTIONAL PULONG pdwImageSize )
{
NTSTATUS ntStatus = STATUS_SUCCESS;
PSYSTEM_MODULE_INFORMATION pModuleInformation = NULL;
ULONG uReturnLength = 0, uModuleInformationCount = 0, uCount = 0;
PSYSTEM_MODULE_ENTRY pModule = NULL;
__try
{
ntStatus = ZwQuerySystemInformation( SystemModuleInformation, (PVOID)&pModuleInformation, 0,
&uReturnLength );
if( !uReturnLength )
{
KdPrint((""__FUNCTION__": Error obtaining return length"));
return FALSE;
}
pModuleInformation = (PSYSTEM_MODULE_INFORMATION)ExAllocatePoolWithTag( NonPagedPool, uReturnLength*2,
'SMI1' );
if( !pModuleInformation )
{
KdPrint((""__FUNCTION__": Error allocating memory for SystemModuleInformation"));
return FALSE;
}
RtlZeroMemory( pModuleInformation, uReturnLength*2 );
ntStatus = ZwQuerySystemInformation( SystemModuleInformation, (PVOID)pModuleInformation, uReturnLength*2,
&uReturnLength );
if( !NT_SUCCESS(ntStatus) )
{
KdPrint((""__FUNCTION__": Error on ZwQuerySystemInformation"));
return FALSE;
}
pModule = ( (PSYSTEM_MODULE_INFORMATION)(pModuleInformation) )->Module;
for( ; uCount < ( (PSYSTEM_MODULE_INFORMATION)(pModuleInformation) )->Count; uCount++ )
{
if( !_stricmp((char*)pModule[uCount].ModuleName+pModule[uCount].ModuleNameOffset, pszImage) )
{
KdPrint(("Found module %s", pszImage));
*pdwImageBase = (ULONG)pModule[uCount].ModuleBaseAddress;
if( pdwImageSize != NULL )
*pdwImageSize = pModule[uCount].ModuleSize;
ExFreePoolWithTag( pModuleInformation, 'SMI1' );
return TRUE;
}
}
ExFreePoolWithTag( pModuleInformation, 'SMI1' );
return FALSE; // Module not found
}
__except( EXCEPTION_EXECUTE_HANDLER )
{
if( pModuleInformation )
ExFreePoolWithTag( pModuleInformation, 'SMI1' );
return FALSE;
}
}