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
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
|
#include "common.h"
#include "utils.h"
#include "objects.h"
#include "crypto.h"
#include "core.h"
#include "string_manager.h"
#include "licensing_manager.h"
#include "hwid.h"
#ifdef VMP_GNU
#include "loader.h"
#elif defined(WIN_DRIVER)
#include "loader.h"
#else
#include "resource_manager.h"
#include "file_manager.h"
#include "registry_manager.h"
#include "hook_manager.h"
#endif
GlobalData *loader_data = NULL;
#ifdef WIN_DRIVER
__declspec(noinline) void * ExAllocateNonPagedPoolNx(size_t size)
{
return ExAllocatePool((POOL_TYPE)FACE_NON_PAGED_POOL_NX, size);
}
void * __cdecl operator new(size_t size)
{
if (size)
return ExAllocateNonPagedPoolNx(size);
return NULL;
}
void __cdecl operator delete(void* p)
{
if (p)
ExFreePool(p);
}
void __cdecl operator delete(void* p, size_t)
{
if (p)
ExFreePool(p);
}
void * __cdecl operator new[](size_t size)
{
if (size)
return ExAllocateNonPagedPoolNx(size);
return NULL;
}
void __cdecl operator delete[](void *p)
{
if (p)
ExFreePool(p);
}
#endif
/**
* initialization functions
*/
#ifdef VMP_GNU
EXPORT_API bool WINAPI DllMain(HMODULE hModule, bool is_init) __asm__ ("DllMain");
bool WINAPI DllMain(HMODULE hModule, bool is_init)
{
if (is_init) {
if (!Core::Instance()->Init(hModule)) {
Core::Free();
return false;
}
} else {
Core::Free();
}
return true;
}
#elif defined(WIN_DRIVER)
NTSTATUS DllMain(HMODULE hModule, bool is_init)
{
if (is_init) {
if (!Core::Instance()->Init(hModule)) {
Core::Free();
return STATUS_ACCESS_DENIED;
}
} else {
Core::Free();
}
return STATUS_SUCCESS;
}
#else
BOOL WINAPI DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpReserved)
{
switch (dwReason) {
case DLL_PROCESS_ATTACH:
if (!Core::Instance()->Init(hModule)) {
Core::Free();
return FALSE;
}
break;
case DLL_PROCESS_DETACH:
Core::Free();
break;
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
break;
}
return TRUE;
}
#endif
/**
* exported functions
*/
NOINLINE bool InternalFindFirmwareVendor(const uint8_t *data, size_t data_size)
{
for (size_t i = 0; i < data_size; i++) {
#ifdef __unix__
if (i + 3 < data_size && data[i + 0] == 'Q' && data[i + 1] == 'E' && data[i + 2] == 'M' && data[i + 3] == 'U')
return true;
if (i + 8 < data_size && data[i + 0] == 'M' && data[i + 1] == 'i' && data[i + 2] == 'c' && data[i + 3] == 'r' && data[i + 4] == 'o' && data[i + 5] == 's' && data[i + 6] == 'o' && data[i + 7] == 'f' && data[i + 8] == 't')
return true;
if (i + 6 < data_size && data[i + 0] == 'i' && data[i + 1] == 'n' && data[i + 2] == 'n' && data[i + 3] == 'o' && data[i + 4] == 't' && data[i + 5] == 'e' && data[i + 6] == 'k')
return true;
#else
if (i + 9 < data_size && data[i + 0] == 'V' && data[i + 1] == 'i' && data[i + 2] == 'r' && data[i + 3] == 't' && data[i + 4] == 'u' && data[i + 5] == 'a' && data[i + 6] == 'l' && data[i + 7] == 'B' && data[i + 8] == 'o' && data[i + 9] == 'x')
return true;
#endif
if (i + 5 < data_size && data[i + 0] == 'V' && data[i + 1] == 'M' && data[i + 2] == 'w' && data[i + 3] == 'a' && data[i + 4] == 'r' && data[i + 5] == 'e')
return true;
if (i + 8 < data_size && data[i + 0] == 'P' && data[i + 1] == 'a' && data[i + 2] == 'r' && data[i + 3] == 'a' && data[i + 4] == 'l' && data[i + 5] == 'l' && data[i + 6] == 'e' && data[i + 7] == 'l' && data[i + 8] == 's')
return true;
}
return false;
}
#ifdef VMP_GNU
EXPORT_API bool WINAPI ExportedIsValidImageCRC() __asm__ ("ExportedIsValidImageCRC");
EXPORT_API bool WINAPI ExportedIsDebuggerPresent(bool check_kernel_mode) __asm__ ("ExportedIsDebuggerPresent");
EXPORT_API bool WINAPI ExportedIsVirtualMachinePresent() __asm__ ("ExportedIsVirtualMachinePresent");
EXPORT_API bool WINAPI ExportedIsProtected() __asm__ ("ExportedIsProtected");
#endif
struct CRCData {
uint8_t *ImageBase;
uint32_t Table;
uint32_t Size;
uint32_t Hash;
NOINLINE CRCData()
{
ImageBase = reinterpret_cast<uint8_t *>(FACE_IMAGE_BASE);
Table = FACE_CRC_TABLE_ENTRY;
Size = FACE_CRC_TABLE_SIZE;
Hash = FACE_CRC_TABLE_HASH;
}
};
bool WINAPI ExportedIsValidImageCRC()
{
if (loader_data->is_patch_detected())
return false;
const CRCData crc_data;
bool res = true;
uint8_t *image_base = crc_data.ImageBase;
uint8_t *crc_table = image_base + crc_data.Table;
uint32_t crc_table_size = *reinterpret_cast<uint32_t *>(image_base + crc_data.Size);
uint32_t crc_table_hash = *reinterpret_cast<uint32_t *>(image_base + crc_data.Hash);
#ifdef WIN_DRIVER
uint32_t image_size = 0;
if (loader_data->loader_status() == STATUS_SUCCESS) {
IMAGE_DOS_HEADER *dos_header = reinterpret_cast<IMAGE_DOS_HEADER *>(image_base);
if (dos_header->e_magic == IMAGE_DOS_SIGNATURE) {
IMAGE_NT_HEADERS *pe_header = reinterpret_cast<IMAGE_NT_HEADERS *>(image_base + dos_header->e_lfanew);
if (pe_header->Signature == IMAGE_NT_SIGNATURE) {
IMAGE_SECTION_HEADER *sections = reinterpret_cast<IMAGE_SECTION_HEADER *>(reinterpret_cast<uint8_t *>(pe_header) + offsetof(IMAGE_NT_HEADERS, OptionalHeader) + pe_header->FileHeader.SizeOfOptionalHeader);
for (size_t i = 0; i < pe_header->FileHeader.NumberOfSections; i++) {
IMAGE_SECTION_HEADER *section = sections + i;
if (section->Characteristics & IMAGE_SCN_MEM_DISCARDABLE) {
image_size = section->VirtualAddress;
break;
}
}
}
}
}
#endif
// check memory CRC
{
if (crc_table_hash != CalcCRC(crc_table, crc_table_size))
res = false;
CRCValueCryptor crc_cryptor;
for (size_t i = 0; i < crc_table_size; i += sizeof(CRC_INFO)) {
CRC_INFO crc_info = *reinterpret_cast<CRC_INFO *>(crc_table + i);
crc_info.Address = crc_cryptor.Decrypt(crc_info.Address);
crc_info.Size = crc_cryptor.Decrypt(crc_info.Size);
crc_info.Hash = crc_cryptor.Decrypt(crc_info.Hash);
#ifdef WIN_DRIVER
if (image_size && image_size < crc_info.Address + crc_info.Size)
continue;
#endif
if (crc_info.Hash != CalcCRC(image_base + crc_info.Address, crc_info.Size))
res = false;
}
}
// check header and loader CRC
crc_table = image_base + loader_data->loader_crc_info();
crc_table_size = static_cast<uint32_t>(loader_data->loader_crc_size());
crc_table_hash = static_cast<uint32_t>(loader_data->loader_crc_hash());
{
if (crc_table_hash != CalcCRC(crc_table, crc_table_size))
res = false;
CRCValueCryptor crc_cryptor;
for (size_t i = 0; i < crc_table_size; i += sizeof(CRC_INFO)) {
CRC_INFO crc_info = *reinterpret_cast<CRC_INFO *>(crc_table + i);
crc_info.Address = crc_cryptor.Decrypt(crc_info.Address);
crc_info.Size = crc_cryptor.Decrypt(crc_info.Size);
crc_info.Hash = crc_cryptor.Decrypt(crc_info.Hash);
#ifdef WIN_DRIVER
if (image_size && image_size < crc_info.Address + crc_info.Size)
continue;
#endif
if (crc_info.Hash != CalcCRC(image_base + crc_info.Address, crc_info.Size))
res = false;
}
}
#ifndef DEMO
#ifdef VMP_GNU
#elif defined(WIN_DRIVER)
#else
// check memory type of loader_data
HMODULE ntdll = GetModuleHandleA(VMProtectDecryptStringA("ntdll.dll"));
typedef NTSTATUS(NTAPI tNtQueryVirtualMemory)(HANDLE ProcessHandle, PVOID BaseAddress, MEMORY_INFORMATION_CLASS MemoryInformationClass, PVOID MemoryInformation, SIZE_T MemoryInformationLength, PSIZE_T ReturnLength);
tNtQueryVirtualMemory *query_virtual_memory = reinterpret_cast<tNtQueryVirtualMemory *>(InternalGetProcAddress(ntdll, VMProtectDecryptStringA("NtQueryVirtualMemory")));
if (query_virtual_memory) {
MEMORY_BASIC_INFORMATION memory_info;
NTSTATUS status = query_virtual_memory(NtCurrentProcess(), loader_data, MemoryBasicInformation, &memory_info, sizeof(memory_info), NULL);
if (NT_SUCCESS(status) && memory_info.AllocationBase == image_base)
res = false;
}
#endif
#endif
return res;
}
bool WINAPI ExportedIsVirtualMachinePresent()
{
// hardware detection
int cpu_info[4];
__cpuid(cpu_info, 1);
if ((cpu_info[2] >> 31) & 1) {
#ifndef VMP_GNU
// check Hyper-V root partition
cpu_info[1] = 0;
cpu_info[2] = 0;
cpu_info[3] = 0;
__cpuid(cpu_info, 0x40000000);
if (cpu_info[1] == 0x7263694d && cpu_info[2] == 0x666f736f && cpu_info[3] == 0x76482074) { // "Microsoft Hv"
cpu_info[1] = 0;
__cpuid(cpu_info, 0x40000003);
if (cpu_info[1] & 1)
return false;
}
#endif
return true;
}
#ifndef VMP_GNU
uint64_t val;
uint8_t mem_val;
__try {
// set T flag
__writeeflags(__readeflags() | 0x100);
val = __rdtsc();
__nop();
loader_data->set_is_debugger_detected(true);
} __except(mem_val = *static_cast<uint8_t *>((GetExceptionInformation())->ExceptionRecord->ExceptionAddress), EXCEPTION_EXECUTE_HANDLER) {
if (mem_val != 0x90)
return true;
}
__try {
// set T flag
__writeeflags(__readeflags() | 0x100);
__cpuid(cpu_info, 1);
__nop();
loader_data->set_is_debugger_detected(true);
} __except(mem_val = *static_cast<uint8_t *>((GetExceptionInformation())->ExceptionRecord->ExceptionAddress), EXCEPTION_EXECUTE_HANDLER) {
if (mem_val != 0x90)
return true;
}
#endif
// software detection
#ifdef __APPLE__
// FIXME
#elif defined(__unix__)
FILE *fsys_vendor = fopen(VMProtectDecryptStringA("/sys/devices/virtual/dmi/id/sys_vendor"), "r");
if (fsys_vendor) {
char sys_vendor[256] = {0};
fgets(sys_vendor, sizeof(sys_vendor), fsys_vendor);
fclose(fsys_vendor);
if (InternalFindFirmwareVendor(reinterpret_cast<uint8_t *>(sys_vendor), sizeof(sys_vendor)))
return true;
}
#elif defined(WIN_DRIVER)
// FIXME
#else
HMODULE dll = GetModuleHandleA(VMProtectDecryptStringA("kernel32.dll"));
bool is_found = false;
typedef UINT (WINAPI tEnumSystemFirmwareTables)(DWORD FirmwareTableProviderSignature, PVOID pFirmwareTableEnumBuffer, DWORD BufferSize);
typedef UINT (WINAPI tGetSystemFirmwareTable)(DWORD FirmwareTableProviderSignature, DWORD FirmwareTableID, PVOID pFirmwareTableBuffer, DWORD BufferSize);
tEnumSystemFirmwareTables *enum_system_firmware_tables = reinterpret_cast<tEnumSystemFirmwareTables *>(InternalGetProcAddress(dll, VMProtectDecryptStringA("EnumSystemFirmwareTables")));
tGetSystemFirmwareTable *get_system_firmware_table = reinterpret_cast<tGetSystemFirmwareTable *>(InternalGetProcAddress(dll, VMProtectDecryptStringA("GetSystemFirmwareTable")));
if (enum_system_firmware_tables && get_system_firmware_table) {
UINT tables_size = enum_system_firmware_tables('FIRM', NULL, 0);
if (tables_size) {
DWORD *tables = new DWORD[tables_size / sizeof(DWORD)];
enum_system_firmware_tables('FIRM', tables, tables_size);
for (size_t i = 0; i < tables_size / sizeof(DWORD); i++) {
UINT data_size = get_system_firmware_table('FIRM', tables[i], NULL, 0);
if (data_size) {
uint8_t *data = new uint8_t[data_size];
get_system_firmware_table('FIRM', tables[i], data, data_size);
if (InternalFindFirmwareVendor(data, data_size))
is_found = true;
delete [] data;
}
}
delete [] tables;
}
} else {
dll = LoadLibraryA(VMProtectDecryptStringA("ntdll.dll"));
typedef NTSTATUS (WINAPI tNtOpenSection)(PHANDLE SectionHandle, ACCESS_MASK DesiredAccess, POBJECT_ATTRIBUTES ObjectAttributes);
typedef NTSTATUS (WINAPI tNtMapViewOfSection)(HANDLE SectionHandle, HANDLE ProcessHandle, PVOID *BaseAddress, ULONG_PTR ZeroBits, SIZE_T CommitSize, PLARGE_INTEGER SectionOffset, PSIZE_T ViewSize, SECTION_INHERIT InheritDisposition, ULONG AllocationType, ULONG Win32Protect);
typedef NTSTATUS (WINAPI tNtUnmapViewOfSection)(HANDLE ProcessHandle, PVOID BaseAddress);
typedef NTSTATUS (WINAPI tNtClose)(HANDLE Handle);
tNtOpenSection *open_section = reinterpret_cast<tNtOpenSection *>(InternalGetProcAddress(dll, VMProtectDecryptStringA("NtOpenSection")));
tNtMapViewOfSection *map_view_of_section = reinterpret_cast<tNtMapViewOfSection *>(InternalGetProcAddress(dll, VMProtectDecryptStringA("NtMapViewOfSection")));
tNtUnmapViewOfSection *unmap_view_of_section = reinterpret_cast<tNtUnmapViewOfSection *>(InternalGetProcAddress(dll, VMProtectDecryptStringA("NtUnmapViewOfSection")));
tNtClose *close = reinterpret_cast<tNtClose *>(InternalGetProcAddress(dll, VMProtectDecryptStringA("NtClose")));
if (open_section && map_view_of_section && unmap_view_of_section && close) {
HANDLE process = NtCurrentProcess();
HANDLE physical_memory = NULL;
UNICODE_STRING str;
OBJECT_ATTRIBUTES attrs;
wchar_t buf[] = {'\\','d','e','v','i','c','e','\\','p','h','y','s','i','c','a','l','m','e','m','o','r','y',0};
str.Buffer = buf;
str.Length = sizeof(buf) - sizeof(wchar_t);
str.MaximumLength = sizeof(buf);
InitializeObjectAttributes(&attrs, &str, OBJ_CASE_INSENSITIVE, NULL, NULL);
NTSTATUS status = open_section(&physical_memory, SECTION_MAP_READ, &attrs);
if (NT_SUCCESS(status)) {
void *data = NULL;
SIZE_T data_size = 0x10000;
LARGE_INTEGER offset;
offset.QuadPart = 0xc0000;
status = map_view_of_section(physical_memory, process, &data, NULL, data_size, &offset, &data_size, ViewShare, 0, PAGE_READONLY);
if (NT_SUCCESS(status)) {
if (InternalFindFirmwareVendor(static_cast<uint8_t *>(data), data_size))
is_found = true;
unmap_view_of_section(process, data);
}
close(physical_memory);
}
}
}
if (is_found)
return true;
if (GetModuleHandleA(VMProtectDecryptStringA("sbiedll.dll")))
return true;
#endif
return false;
}
bool WINAPI ExportedIsDebuggerPresent(bool check_kernel_mode)
{
if (loader_data->is_debugger_detected())
return true;
#if defined(__unix__)
FILE *file = fopen(VMProtectDecryptStringA("/proc/self/status"), "r");
if (file) {
char data[100];
int tracer_pid = 0;
while (fgets(data, sizeof(data), file)) {
if (data[0] == 'T' && data[1] == 'r' && data[2] == 'a' && data[3] == 'c' && data[4] == 'e' && data[5] == 'r' && data[6] == 'P' && data[7] == 'i' && data[8] == 'd' && data[9] == ':') {
char *tracer_ptr = data + 10;
// skip spaces
while (char c = *tracer_ptr) {
if (c == ' ' || c == '\t') {
tracer_ptr++;
continue;
}
else {
break;
}
}
// atoi
while (char c = *tracer_ptr++) {
if (c >= '0' && c <= '9') {
tracer_pid *= 10;
tracer_pid += c - '0';
}
else {
if (c != '\n' && c != '\r')
tracer_pid = 0;
break;
}
}
break;
}
}
fclose(file);
if (tracer_pid && tracer_pid != 1)
return true;
}
#elif defined(__APPLE__)
(void)check_kernel_mode;
int junk;
int mib[4];
kinfo_proc info;
size_t size;
// Initialize the flags so that, if sysctl fails for some bizarre
// reason, we get a predictable result.
info.kp_proc.p_flag = 0;
// Initialize mib, which tells sysctl the info we want, in this case
// we're looking for information about a specific process ID.
mib[0] = CTL_KERN;
mib[1] = KERN_PROC;
mib[2] = KERN_PROC_PID;
mib[3] = getpid();
// Call sysctl.
size = sizeof(info);
junk = sysctl(mib, sizeof(mib) / sizeof(*mib), &info, &size, NULL, 0);
// We're being debugged if the P_TRACED flag is set.
if ((info.kp_proc.p_flag & P_TRACED) != 0)
return true;
#else
#ifdef WIN_DRIVER
#else
HMODULE kernel32 = GetModuleHandleA(VMProtectDecryptStringA("kernel32.dll"));
HMODULE ntdll = GetModuleHandleA(VMProtectDecryptStringA("ntdll.dll"));
HANDLE process = NtCurrentProcess();
size_t syscall = FACE_SYSCALL;
uint32_t sc_query_information_process = 0;
if (ntdll) {
#ifndef DEMO
if (InternalGetProcAddress(ntdll, VMProtectDecryptStringA("wine_get_version")) == NULL) {
#ifndef _WIN64
BOOL is_wow64 = FALSE;
typedef BOOL(WINAPI tIsWow64Process)(HANDLE Process, PBOOL Wow64Process);
tIsWow64Process *is_wow64_process = reinterpret_cast<tIsWow64Process *>(InternalGetProcAddress(kernel32, VMProtectDecryptStringA("IsWow64Process")));
if (is_wow64_process)
is_wow64_process(process, &is_wow64);
#endif
uint32_t os_build_number = loader_data->os_build_number();
if (os_build_number == WINDOWS_XP) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x009a;
}
else
#endif
{
sc_query_information_process = 0x0016;
}
}
else if (os_build_number == WINDOWS_2003) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00a1;
}
else
#endif
{
sc_query_information_process = 0x0016;
}
}
else if (os_build_number == WINDOWS_VISTA) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00e4;
}
else
#endif
{
sc_query_information_process = 0x0016;
}
}
else if (os_build_number == WINDOWS_VISTA_SP1) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00e4;
}
else
#endif
{
sc_query_information_process = 0x0016;
}
}
else if (os_build_number == WINDOWS_VISTA_SP2) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00e4;
}
else
#endif
{
sc_query_information_process = 0x0016;
}
}
else if (os_build_number == WINDOWS_7) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00ea;
}
else
#endif
{
sc_query_information_process = 0x0016;
}
}
else if (os_build_number == WINDOWS_7_SP1) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00ea;
}
else
#endif
{
sc_query_information_process = 0x0016;
}
}
else if (os_build_number == WINDOWS_8) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00b0;
}
else
#endif
{
sc_query_information_process = 0x0017;
}
}
else if (os_build_number == WINDOWS_8_1) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00b3;
}
else
#endif
{
sc_query_information_process = 0x0018;
}
}
else if (os_build_number == WINDOWS_10_TH1) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00b5;
}
else
#endif
{
sc_query_information_process = 0x0019;
}
}
else if (os_build_number == WINDOWS_10_TH2) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00b5;
}
else
#endif
{
sc_query_information_process = 0x0019;
}
}
else if (os_build_number == WINDOWS_10_RS1) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00b7;
}
else
#endif
{
sc_query_information_process = 0x0019;
}
}
else if (os_build_number == WINDOWS_10_RS2) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00b8;
}
else
#endif
{
sc_query_information_process = 0x0019;
}
}
else if (os_build_number == WINDOWS_10_RS3) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00b9;
}
else
#endif
{
sc_query_information_process = 0x0019;
}
}
else if (os_build_number == WINDOWS_10_RS4) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00b9;
}
else
#endif
{
sc_query_information_process = 0x0019;
}
}
else if (os_build_number == WINDOWS_10_RS5) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00b9;
}
else
#endif
{
sc_query_information_process = 0x0019;
}
}
else if (os_build_number == WINDOWS_10_19H1) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00b9;
}
else
#endif
{
sc_query_information_process = 0x0019;
}
}
else if (os_build_number == WINDOWS_10_19H2) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00b9;
}
else
#endif
{
sc_query_information_process = 0x0019;
}
}
else if (os_build_number == WINDOWS_10_20H1) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00b9;
}
else
#endif
{
sc_query_information_process = 0x0019;
}
}
else if (os_build_number == WINDOWS_10_20H2) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00b9;
}
else
#endif
{
sc_query_information_process = 0x0019;
}
}
else if (os_build_number == WINDOWS_10_21H1) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00b9;
}
else
#endif
{
sc_query_information_process = 0x0019;
}
}
else if (os_build_number == WINDOWS_10_21H2) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00b9;
}
else
#endif
{
sc_query_information_process = 0x0019;
}
}
else if (os_build_number == WINDOWS_10_22H2) {
#ifndef _WIN64
if (!is_wow64) {
sc_query_information_process = 0x00b9;
}
else
#endif
{
sc_query_information_process = 0x0019;
}
}
#ifndef _WIN64
if (is_wow64 && sc_query_information_process) {
sc_query_information_process |= WOW64_FLAG | (0x03 << 24);
}
#endif
}
#endif
}
#ifdef _WIN64
PEB64 *peb = reinterpret_cast<PEB64 *>(__readgsqword(0x60));
#else
PEB32 *peb = reinterpret_cast<PEB32 *>(__readfsdword(0x30));
#endif
if (peb->BeingDebugged)
return true;
{
size_t drx;
uint64_t val;
CONTEXT *ctx;
__try {
__writeeflags(__readeflags() | 0x100);
val = __rdtsc();
__nop();
return true;
}
__except (ctx = (GetExceptionInformation())->ContextRecord,
drx = (ctx->ContextFlags & CONTEXT_DEBUG_REGISTERS) ? ctx->Dr0 | ctx->Dr1 | ctx->Dr2 | ctx->Dr3 : 0,
EXCEPTION_EXECUTE_HANDLER) {
if (drx)
return true;
}
}
typedef NTSTATUS(NTAPI tNtQueryInformationProcess)(HANDLE ProcessHandle, PROCESSINFOCLASS ProcessInformationClass, PVOID ProcessInformation, ULONG ProcessInformationLength, PULONG ReturnLength);
if (sc_query_information_process) {
HANDLE debug_object;
if (NT_SUCCESS(reinterpret_cast<tNtQueryInformationProcess *>(syscall | sc_query_information_process)(process, ProcessDebugPort, &debug_object, sizeof(debug_object), NULL)) && debug_object != 0)
return true;
debug_object = 0;
if (NT_SUCCESS(reinterpret_cast<tNtQueryInformationProcess *>(syscall | sc_query_information_process)(process, ProcessDebugObjectHandle, &debug_object, sizeof(debug_object), reinterpret_cast<PULONG>(&debug_object)))
|| debug_object == 0)
return true;
}
else if (tNtQueryInformationProcess *query_information_process = reinterpret_cast<tNtQueryInformationProcess *>(InternalGetProcAddress(ntdll, VMProtectDecryptStringA("NtQueryInformationProcess")))) {
HANDLE debug_object;
if (NT_SUCCESS(query_information_process(process, ProcessDebugPort, &debug_object, sizeof(debug_object), NULL)) && debug_object != 0)
return true;
if (NT_SUCCESS(query_information_process(process, ProcessDebugObjectHandle, &debug_object, sizeof(debug_object), NULL)))
return true;
}
#endif
#ifdef WIN_DRIVER
if (true) {
#else
if (check_kernel_mode) {
#endif
bool is_found = false;
typedef NTSTATUS (NTAPI tNtQuerySystemInformation)(SYSTEM_INFORMATION_CLASS SystemInformationClass, PVOID SystemInformation, ULONG SystemInformationLength, PULONG ReturnLength);
#ifdef WIN_DRIVER
tNtQuerySystemInformation *nt_query_system_information = &NtQuerySystemInformation;
#else
tNtQuerySystemInformation *nt_query_system_information = reinterpret_cast<tNtQuerySystemInformation *>(InternalGetProcAddress(ntdll, VMProtectDecryptStringA("NtQuerySystemInformation")));
if (nt_query_system_information) {
#endif
SYSTEM_KERNEL_DEBUGGER_INFORMATION info;
NTSTATUS status = nt_query_system_information(SystemKernelDebuggerInformation, &info, sizeof(info), NULL);
if (NT_SUCCESS(status) && info.DebuggerEnabled && !info.DebuggerNotPresent)
return true;
SYSTEM_MODULE_INFORMATION *buffer = NULL;
ULONG buffer_size = 0;
/*status = */nt_query_system_information(SystemModuleInformation, &buffer, 0, &buffer_size);
if (buffer_size) {
buffer = reinterpret_cast<SYSTEM_MODULE_INFORMATION *>(new uint8_t[buffer_size * 2]);
status = nt_query_system_information(SystemModuleInformation, buffer, buffer_size * 2, NULL);
if (NT_SUCCESS(status)) {
for (size_t i = 0; i < buffer->Count && !is_found; i++) {
SYSTEM_MODULE_ENTRY *module_entry = &buffer->Module[i];
char module_name[11];
for (size_t j = 0; j < 5; j++) {
switch (j) {
case 0:
module_name[0] = 's';
module_name[1] = 'i';
module_name[2] = 'c';
module_name[3] = 'e';
module_name[4] = '.';
module_name[5] = 's';
module_name[6] = 'y';
module_name[7] = 's';
module_name[8] = 0;
break;
case 1:
module_name[0] = 's';
module_name[1] = 'i';
module_name[2] = 'w';
module_name[3] = 'v';
module_name[4] = 'i';
module_name[5] = 'd';
module_name[6] = '.';
module_name[7] = 's';
module_name[8] = 'y';
module_name[9] = 's';
module_name[10] = 0;
break;
case 2:
module_name[0] = 'n';
module_name[1] = 't';
module_name[2] = 'i';
module_name[3] = 'c';
module_name[4] = 'e';
module_name[5] = '.';
module_name[6] = 's';
module_name[7] = 'y';
module_name[8] = 's';
module_name[9] = 0;
break;
case 3:
module_name[0] = 'i';
module_name[1] = 'c';
module_name[2] = 'e';
module_name[3] = 'e';
module_name[4] = 'x';
module_name[5] = 't';
module_name[6] = '.';
module_name[7] = 's';
module_name[8] = 'y';
module_name[9] = 's';
module_name[10] = 0;
break;
case 4:
module_name[0] = 's';
module_name[1] = 'y';
module_name[2] = 's';
module_name[3] = 'e';
module_name[4] = 'r';
module_name[5] = '.';
module_name[6] = 's';
module_name[7] = 'y';
module_name[8] = 's';
module_name[9] = 0;
break;
}
if (_stricmp(module_entry->Name + module_entry->PathLength, module_name) == 0) {
is_found = true;
break;
}
}
}
}
delete [] buffer;
}
#ifndef WIN_DRIVER
}
#endif
if (is_found)
return true;
}
#endif
return false;
}
bool WINAPI ExportedIsProtected()
{
return true;
}
#ifdef VMP_GNU
#elif defined(WIN_DRIVER)
#else
/**
* VirtualObject
*/
VirtualObject::VirtualObject(VirtualObjectType type, void *ref, HANDLE handle, uint32_t access)
: ref_(ref), handle_(handle), type_(type), file_position_(0), attributes_(0), access_(access)
{
if(access & MAXIMUM_ALLOWED)
{
access_ |= KEY_ALL_ACCESS;
}
}
VirtualObject::~VirtualObject()
{
}
/**
* VirtualObjectList
*/
VirtualObjectList::VirtualObjectList()
{
CriticalSection::Init(critical_section_);
}
VirtualObjectList::~VirtualObjectList()
{
for (size_t i = 0; i < size(); i++) {
VirtualObject *object = v_[i];
delete object;
}
v_.clear();
CriticalSection::Free(critical_section_);
}
VirtualObject *VirtualObjectList::Add(VirtualObjectType type, void *ref, HANDLE handle, uint32_t access)
{
VirtualObject *object = new VirtualObject(type, ref, handle, access);
v_.push_back(object);
return object;
}
void VirtualObjectList::Delete(size_t index)
{
VirtualObject *object = v_[index];
v_.erase(index);
delete object;
}
void VirtualObjectList::DeleteObject(HANDLE handle)
{
handle = EXHANDLE(handle);
for (size_t i = size(); i > 0; i--) {
size_t index = i - 1;
VirtualObject *object = v_[index];
if (object->handle() == handle)
Delete(index);
}
}
void VirtualObjectList::DeleteRef(void *ref, HANDLE handle)
{
handle = EXHANDLE(handle);
for (size_t i = size(); i > 0; i--) {
size_t index = i - 1;
VirtualObject *object = v_[index];
if (object->ref() == ref && (!handle || object->handle() == handle))
Delete(index);
}
}
VirtualObject *VirtualObjectList::GetObject(HANDLE handle) const
{
handle = EXHANDLE(handle);
for (size_t i = 0; i < size(); i++) {
VirtualObject *object = v_[i];
if (object->handle() == handle)
return object;
}
return NULL;
}
VirtualObject *VirtualObjectList::GetFile(HANDLE handle) const
{
VirtualObject *object = GetObject(handle);
return (object && object->type() == OBJECT_FILE) ? object : NULL;
}
VirtualObject *VirtualObjectList::GetSection(HANDLE handle) const
{
VirtualObject *object = GetObject(handle);
return (object && object->type() == OBJECT_SECTION) ? object : NULL;
}
VirtualObject *VirtualObjectList::GetMap(HANDLE process, void *map) const
{
for (size_t i = 0; i < size(); i++) {
VirtualObject *object = v_[i];
if (object->type() == OBJECT_MAP && object->handle() == process && object->ref() == map)
return object;
}
return NULL;
}
VirtualObject *VirtualObjectList::GetKey(HANDLE handle) const
{
VirtualObject *object = GetObject(handle);
return (object && object->type() == OBJECT_KEY) ? object : NULL;
}
uint32_t VirtualObjectList::GetHandleCount(HANDLE handle) const
{
uint32_t res = 0;
for (size_t i = 0; i < size(); i++) {
VirtualObject *object = v_[i];
if (object->handle() == handle)
res++;
}
return res;
}
uint32_t VirtualObjectList::GetPointerCount(const void *ref) const
{
uint32_t res = 0;
for (size_t i = 0; i < size(); i++) {
VirtualObject *object = v_[i];
if (object->ref() == ref)
res++;
}
return res;
}
#endif
/**
* Core
*/
Core *Core::self_ = NULL;
Core::Core()
: string_manager_(NULL), licensing_manager_(NULL), hardware_id_(NULL)
#ifdef VMP_GNU
#elif defined(WIN_DRIVER)
#else
, resource_manager_(NULL), file_manager_(NULL), registry_manager_(NULL)
, hook_manager_(NULL), nt_protect_virtual_memory_(NULL), nt_close_(NULL)
, nt_query_object_(NULL), dbg_ui_remote_breakin_(NULL)
#endif
{
}
Core::~Core()
{
delete string_manager_;
delete licensing_manager_;
delete hardware_id_;
#ifdef VMP_GNU
#elif defined(WIN_DRIVER)
#else
if (resource_manager_) {
resource_manager_->UnhookAPIs(*hook_manager_);
delete resource_manager_;
}
if (file_manager_) {
file_manager_->UnhookAPIs(*hook_manager_);
delete file_manager_;
}
if (registry_manager_) {
registry_manager_->UnhookAPIs(*hook_manager_);
delete registry_manager_;
}
if (nt_protect_virtual_memory_ || nt_close_ || dbg_ui_remote_breakin_)
UnhookAPIs(*hook_manager_);
delete hook_manager_;
#endif
}
Core *Core::Instance()
{
if (!self_)
self_ = new Core();
return self_;
}
void Core::Free()
{
if (self_) {
delete self_;
self_ = NULL;
}
}
struct CoreData {
uint32_t Strings;
uint32_t Resources;
uint32_t Storage;
uint32_t Registry;
uint32_t LicenseData;
uint32_t LicenseDataSize;
uint32_t TrialHWID;
uint32_t TrialHWIDSize;
uint32_t Key;
uint32_t Options;
NOINLINE CoreData()
{
Strings = FACE_STRING_INFO;
Resources = FACE_RESOURCE_INFO;
Storage = FACE_STORAGE_INFO;
Registry = FACE_REGISTRY_INFO;
Key = FACE_KEY_INFO;
LicenseData = FACE_LICENSE_INFO;
LicenseDataSize = FACE_LICENSE_INFO_SIZE;
TrialHWID = FACE_TRIAL_HWID;
TrialHWIDSize = FACE_TRIAL_HWID_SIZE;
Options = FACE_CORE_OPTIONS;
}
};
bool Core::Init(HMODULE instance)
{
const CoreData data;
uint8_t *key = reinterpret_cast<uint8_t *>(instance) + data.Key;
if (data.Strings)
string_manager_ = new StringManager(reinterpret_cast<uint8_t *>(instance) + data.Strings, instance, key);
if (data.LicenseData)
licensing_manager_ = new LicensingManager(reinterpret_cast<uint8_t *>(instance) + data.LicenseData, data.LicenseDataSize, key);
if (data.TrialHWID) {
uint8_t hwid_data[64];
{
CipherRC5 cipher(key);
cipher.Decrypt(reinterpret_cast<uint8_t *>(instance) + data.TrialHWID, reinterpret_cast<uint8_t *>(&hwid_data), sizeof(hwid_data));
}
if (!hardware_id()->IsCorrect(hwid_data, data.TrialHWIDSize)) {
const VMP_CHAR *message;
#ifdef VMP_GNU
message = VMProtectDecryptStringA(MESSAGE_HWID_MISMATCHED_STR);
#else
message = VMProtectDecryptStringW(MESSAGE_HWID_MISMATCHED_STR);
#endif
ShowMessage(message);
return false;
}
}
#ifdef VMP_GNU
#elif defined(WIN_DRIVER)
#else
if (data.Resources || data.Storage || data.Registry || (data.Options & (CORE_OPTION_MEMORY_PROTECTION | CORE_OPTION_CHECK_DEBUGGER)))
hook_manager_ = new HookManager();
if (data.Resources) {
resource_manager_ = new ResourceManager(reinterpret_cast<uint8_t *>(instance) + data.Resources, instance, key);
resource_manager_->HookAPIs(*hook_manager_); //-V595
}
if (data.Storage) {
file_manager_ = new FileManager(reinterpret_cast<uint8_t *>(instance) + data.Storage, instance, key, &objects_);
file_manager_->HookAPIs(*hook_manager_);
}
if (data.Registry) {
registry_manager_ = new RegistryManager(reinterpret_cast<uint8_t *>(instance) + data.Registry, instance, key, &objects_);
registry_manager_->HookAPIs(*hook_manager_);
}
if (hook_manager_)
HookAPIs(*hook_manager_, data.Options);
if (file_manager_) {
if (!file_manager_->OpenFiles(*registry_manager_))
return false;
}
#endif
return true;
}
HardwareID *Core::hardware_id()
{
if (!hardware_id_)
hardware_id_ = new HardwareID;
return hardware_id_;
}
#ifdef VMP_GNU
#elif defined(WIN_DRIVER)
#else
NTSTATUS WINAPI HookedNtProtectVirtualMemory(HANDLE ProcesssHandle, LPVOID *BaseAddress, SIZE_T *Size, DWORD NewProtect, PDWORD OldProtect)
{
Core *core = Core::Instance();
return core->NtProtectVirtualMemory(ProcesssHandle, BaseAddress, Size, NewProtect, OldProtect);
}
void WINAPI HookedDbgUiRemoteBreakin()
{
::TerminateProcess(::GetCurrentProcess(), 0xDEADC0DE);
}
NTSTATUS WINAPI HookedNtClose(HANDLE Handle)
{
Core *core = Core::Instance();
return core->NtClose(Handle);
}
NTSTATUS WINAPI HookedNtQueryObject(HANDLE Handle, OBJECT_INFORMATION_CLASS ObjectInformationClass, PVOID ObjectInformation, ULONG ObjectInformationLength, PULONG ReturnLength)
{
Core *core = Core::Instance();
return core->NtQueryObject(Handle, ObjectInformationClass, ObjectInformation, ObjectInformationLength, ReturnLength);
}
void Core::HookAPIs(HookManager &hook_manager, uint32_t options)
{
hook_manager.Begin();
HMODULE dll = GetModuleHandleA(VMProtectDecryptStringA("ntdll.dll"));
if (options & CORE_OPTION_MEMORY_PROTECTION)
hook_manager.HookAPI(dll, VMProtectDecryptStringA("NtProtectVirtualMemory"), &HookedNtProtectVirtualMemory, true, &nt_protect_virtual_memory_);
if (options & CORE_OPTION_CHECK_DEBUGGER)
dbg_ui_remote_breakin_ = hook_manager.HookAPI(dll, VMProtectDecryptStringA("DbgUiRemoteBreakin"), &HookedDbgUiRemoteBreakin, false);
if (file_manager_ || registry_manager_) {
nt_close_ = hook_manager.HookAPI(dll, VMProtectDecryptStringA("NtClose"), &HookedNtClose);
nt_query_object_ = hook_manager.HookAPI(dll, VMProtectDecryptStringA("NtQueryObject"), &HookedNtQueryObject);
}
hook_manager.End();
}
void Core::UnhookAPIs(HookManager &hook_manager)
{
hook_manager.Begin();
hook_manager.UnhookAPI(nt_protect_virtual_memory_);
hook_manager.UnhookAPI(nt_close_);
hook_manager.UnhookAPI(nt_query_object_);
hook_manager.UnhookAPI(dbg_ui_remote_breakin_);
hook_manager.End();
}
NTSTATUS Core::NtProtectVirtualMemory(HANDLE ProcesssHandle, LPVOID *BaseAddress, SIZE_T *Size, DWORD NewProtect, PDWORD OldProtect)
{
if (ProcesssHandle == GetCurrentProcess()) {
const CRCData crc_data;
uint8_t *image_base = crc_data.ImageBase;
size_t crc_image_size = loader_data->crc_image_size();
try {
uint8_t *user_address = static_cast<uint8_t *>(*BaseAddress);
size_t user_size = *Size;
if (user_address + user_size > image_base && user_address < image_base + crc_image_size) {
uint8_t *crc_table = image_base + crc_data.Table;
uint32_t crc_table_size = *reinterpret_cast<uint32_t *>(image_base + crc_data.Size);
CRCValueCryptor crc_cryptor;
// check regions
for (size_t i = 0; i < crc_table_size; i += sizeof(CRC_INFO)) {
CRC_INFO crc_info = *reinterpret_cast<CRC_INFO *>(crc_table + i);
crc_info.Address = crc_cryptor.Decrypt(crc_info.Address);
crc_info.Size = crc_cryptor.Decrypt(crc_info.Size);
crc_info.Hash = crc_cryptor.Decrypt(crc_info.Hash);
uint8_t *crc_address = image_base + crc_info.Address;
if (user_address + user_size > crc_address && user_address < crc_address + crc_info.Size)
return STATUS_ACCESS_DENIED;
}
}
} catch(...) {
return STATUS_ACCESS_VIOLATION;
}
}
return TrueNtProtectVirtualMemory(ProcesssHandle, BaseAddress, Size, NewProtect, OldProtect);
}
NTSTATUS Core::NtClose(HANDLE Handle)
{
{
CriticalSection cs(objects_.critical_section());
objects_.DeleteObject(Handle);
}
return TrueNtClose(Handle);
}
NTSTATUS Core::NtQueryObject(HANDLE Handle, OBJECT_INFORMATION_CLASS ObjectInformationClass, PVOID ObjectInformation, ULONG ObjectInformationLength, PULONG ReturnLength)
{
{
CriticalSection cs(objects_.critical_section());
VirtualObject *object = objects_.GetObject(Handle);
if (object) {
try {
switch (ObjectInformationClass) {
case ObjectBasicInformation:
{
if (ObjectInformationLength != sizeof(PUBLIC_OBJECT_BASIC_INFORMATION))
return STATUS_INFO_LENGTH_MISMATCH;
PUBLIC_OBJECT_BASIC_INFORMATION info = {};
info.GrantedAccess = object->access();
info.HandleCount = objects_.GetHandleCount(Handle);
info.PointerCount = objects_.GetPointerCount(object->ref());
if (ReturnLength)
*ReturnLength = sizeof(info);
}
return STATUS_SUCCESS;
default:
return STATUS_INVALID_PARAMETER;
}
} catch (...) {
return STATUS_ACCESS_VIOLATION;
}
}
}
return TrueNtQueryObject(Handle, ObjectInformationClass, ObjectInformation, ObjectInformationLength, ReturnLength);
}
NTSTATUS __forceinline Core::TrueNtProtectVirtualMemory(HANDLE ProcesssHandle, LPVOID *BaseAddress, SIZE_T *Size, DWORD NewProtect, PDWORD OldProtect)
{
typedef NTSTATUS (WINAPI tNtProtectVirtualMemory)(HANDLE ProcesssHandle, LPVOID *BaseAddress, SIZE_T *Size, DWORD NewProtect, PDWORD OldProtect);
return reinterpret_cast<tNtProtectVirtualMemory *>(nt_protect_virtual_memory_)(ProcesssHandle, BaseAddress, Size, NewProtect, OldProtect);
}
NTSTATUS __forceinline Core::TrueNtClose(HANDLE Handle)
{
typedef NTSTATUS (WINAPI tNtClose)(HANDLE Handle);
return reinterpret_cast<tNtClose *>(nt_close_)(Handle);
}
NTSTATUS __forceinline Core::TrueNtQueryObject(HANDLE Handle, OBJECT_INFORMATION_CLASS ObjectInformationClass, PVOID ObjectInformation, ULONG ObjectInformationLength, PULONG ReturnLength)
{
typedef NTSTATUS (WINAPI tNtQueryObject)(HANDLE Handle, OBJECT_INFORMATION_CLASS ObjectInformationClass, PVOID ObjectInformation, ULONG ObjectInformationLength, PULONG ReturnLength);
return reinterpret_cast<tNtQueryObject *>(nt_query_object_)(Handle, ObjectInformationClass, ObjectInformation, ObjectInformationLength, ReturnLength);
}
#endif
|