-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathVirtualBox.cpp
920 lines (769 loc) · 20.4 KB
/
VirtualBox.cpp
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
#include "pch.h"
#include "VirtualBox.h"
/*
Registry key values
*/
VOID vbox_reg_key_value()
{
/* Array of strings of blacklisted registry key values */
const TCHAR *szEntries[][3] = {
{ _T("HARDWARE\\DEVICEMAP\\Scsi\\Scsi Port 0\\Scsi Bus 0\\Target Id 0\\Logical Unit Id 0"), _T("Identifier"), _T("VBOX") },
{ _T("HARDWARE\\Description\\System"), _T("SystemBiosVersion"), _T("VBOX") },
{ _T("HARDWARE\\Description\\System"), _T("VideoBiosVersion"), _T("VIRTUALBOX") },
{ _T("HARDWARE\\Description\\System"), _T("SystemBiosDate"), _T("06/23/99") },
};
WORD dwLength = sizeof(szEntries) / sizeof(szEntries[0]);
for (int i = 0; i < dwLength; i++)
{
TCHAR msg[256] = _T("");
_stprintf_s(msg, sizeof(msg) / sizeof(TCHAR), _T("Checking reg key HARDWARE\\Description\\System - %s is set to %s"), szEntries[i][1], szEntries[i][2]);
if (Is_RegKeyValueExists(HKEY_LOCAL_MACHINE, szEntries[i][0], szEntries[i][1], szEntries[i][2]))
print_results(TRUE, msg);
else
print_results(FALSE, msg);
}
}
/*
Check against virtualbox registry keys
*/
VOID vbox_reg_keys()
{
/* Array of strings of blacklisted registry keys */
const TCHAR* szKeys[] = {
_T("HARDWARE\\ACPI\\DSDT\\VBOX__"),
_T("HARDWARE\\ACPI\\FADT\\VBOX__"),
_T("HARDWARE\\ACPI\\RSDT\\VBOX__"),
_T("SOFTWARE\\Oracle\\VirtualBox Guest Additions"),
_T("SYSTEM\\ControlSet001\\Services\\VBoxGuest"),
_T("SYSTEM\\ControlSet001\\Services\\VBoxMouse"),
_T("SYSTEM\\ControlSet001\\Services\\VBoxService"),
_T("SYSTEM\\ControlSet001\\Services\\VBoxSF"),
_T("SYSTEM\\ControlSet001\\Services\\VBoxVideo")
};
WORD dwlength = sizeof(szKeys) / sizeof(szKeys[0]);
/* Check one by one */
for (int i = 0; i < dwlength; i++)
{
TCHAR msg[256] = _T("");
_stprintf_s(msg, sizeof(msg) / sizeof(TCHAR), _T("Checking reg key %s "), szKeys[i]);
if (Is_RegKeyExists(HKEY_LOCAL_MACHINE, szKeys[i]))
print_results(TRUE, msg);
else
print_results(FALSE, msg);
}
}
/*
Check against virtualbox blacklisted files
*/
VOID vbox_files()
{
/* Array of strings of blacklisted paths */
const TCHAR* szPaths[] = {
_T("System32\\drivers\\VBoxMouse.sys"),
_T("System32\\drivers\\VBoxGuest.sys"),
_T("System32\\drivers\\VBoxSF.sys"),
_T("System32\\drivers\\VBoxVideo.sys"),
_T("System32\\vboxdisp.dll"),
_T("System32\\vboxhook.dll"),
_T("System32\\vboxmrxnp.dll"),
_T("System32\\vboxogl.dll"),
_T("System32\\vboxoglarrayspu.dll"),
_T("System32\\vboxoglcrutil.dll"),
_T("System32\\vboxoglerrorspu.dll"),
_T("System32\\vboxoglfeedbackspu.dll"),
_T("System32\\vboxoglpackspu.dll"),
_T("System32\\vboxoglpassthroughspu.dll"),
_T("System32\\vboxservice.exe"),
_T("System32\\vboxtray.exe"),
_T("System32\\VBoxControl.exe"),
};
/* Getting Windows Directory */
WORD dwlength = sizeof(szPaths) / sizeof(szPaths[0]);
TCHAR szWinDir[MAX_PATH] = _T("");
TCHAR szPath[MAX_PATH] = _T("");
PVOID OldValue = NULL;
GetWindowsDirectory(szWinDir, MAX_PATH);
if (IsWoW64()) {
Wow64DisableWow64FsRedirection(&OldValue);
}
/* Check one by one */
for (int i = 0; i < dwlength; i++)
{
PathCombine(szPath, szWinDir, szPaths[i]);
TCHAR msg[256] = _T("");
_stprintf_s(msg, sizeof(msg) / sizeof(TCHAR), _T("Checking file %s "), szPath);
if (is_FileExists(szPath))
print_results(TRUE, msg);
else
print_results(FALSE, msg);
}
if (IsWoW64()) {
Wow64RevertWow64FsRedirection(&OldValue);
}
}
/*
Check against virtualbox blacklisted directories
*/
BOOL vbox_dir()
{
TCHAR szProgramFile[MAX_PATH];
TCHAR szPath[MAX_PATH] = _T("");
TCHAR szTarget[MAX_PATH] = _T("oracle\\virtualbox guest additions\\");
if (IsWoW64())
ExpandEnvironmentStrings(_T("%ProgramW6432%"), szProgramFile, ARRAYSIZE(szProgramFile));
else
SHGetSpecialFolderPath(NULL, szProgramFile, CSIDL_PROGRAM_FILES, FALSE);
PathCombine(szPath, szProgramFile, szTarget);
return is_DirectoryExists(szPath);
}
/*
Check virtualbox NIC MAC address
*/
BOOL vbox_check_mac()
{
// PCS Systemtechnik CmbH (VirtualBox)
return check_mac_addr(_T("\x08\x00\x27"));
}
/*
Check against pseaudo-devices
*/
VOID vbox_devices()
{
const TCHAR *devices[] = {
_T("\\\\.\\VBoxMiniRdrDN"),
_T("\\\\.\\VBoxGuest"),
_T("\\\\.\\pipe\\VBoxMiniRdDN"),
_T("\\\\.\\VBoxTrayIPC"),
_T("\\\\.\\pipe\\VBoxTrayIPC")
};
WORD iLength = sizeof(devices) / sizeof(devices[0]);
for (int i = 0; i < iLength; i++)
{
HANDLE hFile = CreateFile(devices[i], GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
TCHAR msg[256] = _T("");
_stprintf_s(msg, sizeof(msg) / sizeof(TCHAR), _T("Checking device %s "), devices[i]);
if (hFile != INVALID_HANDLE_VALUE) {
CloseHandle(hFile);
print_results(TRUE, msg);
}
else
print_results(FALSE, msg);
}
}
/*
Check for Window class
*/
BOOL vbox_window_class()
{
HWND hClass = FindWindow(_T("VBoxTrayToolWndClass"), NULL);
HWND hWindow = FindWindow(NULL, _T("VBoxTrayToolWnd"));
if (hClass || hWindow)
return TRUE;
else
return FALSE;
}
/*
Check for shared folders network profider
*/
BOOL vbox_network_share()
{
TCHAR szProviderName[MAX_PATH] = _T("");
DWORD lpBufferSize = MAX_PATH;
if (WNetGetProviderName(WNNC_NET_RDR2SAMPLE, szProviderName, &lpBufferSize) == NO_ERROR)
{
if (StrCmpI(szProviderName, _T("VirtualBox Shared Folders")) == 0)
return TRUE;
else
return FALSE;
}
return FALSE;
}
/*
Check for process list
*/
VOID vbox_processes()
{
const TCHAR *szProcesses[] = {
_T("vboxservice.exe"),
_T("vboxtray.exe")
};
WORD iLength = sizeof(szProcesses) / sizeof(szProcesses[0]);
for (int i = 0; i < iLength; i++)
{
TCHAR msg[256] = _T("");
_stprintf_s(msg, sizeof(msg) / sizeof(TCHAR), _T("Checking VirtualBox process %s "), szProcesses[i]);
if (GetProcessIdFromName(szProcesses[i]))
print_results(TRUE, msg);
else
print_results(FALSE, msg);
}
}
/*
Check vbox mac @ using WMI
*/
BOOL vbox_mac_wmi()
{
IWbemServices *pSvc = NULL;
IWbemLocator *pLoc = NULL;
IEnumWbemClassObject* pEnumerator = NULL;
BOOL bStatus = FALSE;
HRESULT hRes;
BOOL bFound = FALSE;
// Init WMI
bStatus = InitWMI(&pSvc, &pLoc, _T("ROOT\\CIMV2"));
if (bStatus)
{
// If success, execute the desired query
bStatus = ExecWMIQuery(&pSvc, &pLoc, &pEnumerator, _T("SELECT * FROM Win32_NetworkAdapterConfiguration"));
if (bStatus)
{
// Get the data from the query
IWbemClassObject *pclsObj = NULL;
ULONG uReturn = 0;
VARIANT vtProp;
// Iterate over our enumator
while (pEnumerator)
{
hRes = pEnumerator->Next(WBEM_INFINITE, 1, &pclsObj, &uReturn);
if (0 == uReturn)
break;
// Get the value of the Name property
hRes = pclsObj->Get(_T("MACAddress"), 0, &vtProp, 0, 0);
if (SUCCEEDED(hRes)) {
if (V_VT(&vtProp) != VT_NULL) {
if ((vtProp.vt & VT_BSTR) == VT_BSTR)
{
// Do our comparison
if (_tcsstr(vtProp.bstrVal, _T("08:00:27")) != 0) {
bFound = TRUE;
}
}
// release the current result object
VariantClear(&vtProp);
}
}
pclsObj->Release();
// break from while
if (bFound)
break;
}
// Cleanup
pEnumerator->Release();
pSvc->Release();
pLoc->Release();
CoUninitialize();
}
}
return bFound;
}
/*
Check vbox event log using WMI
*/
BOOL vbox_eventlogfile_wmi()
{
IWbemServices *pSvc = NULL;
IWbemLocator *pLoc = NULL;
IEnumWbemClassObject* pEnumerator = NULL;
BOOL bStatus = FALSE;
HRESULT hRes;
BOOL bFound = FALSE;
const TCHAR *szVBoxSources[] = {
_T("vboxvideo"),
_T("VBoxVideoW8"),
_T("VBoxWddm")
};
USHORT MaxVBoxSources = _countof(szVBoxSources);
// Init WMI
bStatus = InitWMI(&pSvc, &pLoc, _T("ROOT\\CIMV2"));
if (bStatus)
{
// If success, execute the desired query
bStatus = ExecWMIQuery(&pSvc, &pLoc, &pEnumerator, _T("SELECT * FROM Win32_NTEventlogFile"));
if (bStatus)
{
// Get the data from the query
IWbemClassObject *pclsObj = NULL;
ULONG uReturn = 0;
VARIANT vtProp;
// Iterate over our enumator
while (pEnumerator && !bFound)
{
hRes = pEnumerator->Next(WBEM_INFINITE, 1, &pclsObj, &uReturn);
if (0 == uReturn)
break;
// Get the value of the FileName property
hRes = pclsObj->Get(_T("FileName"), 0, &vtProp, 0, 0);
if (SUCCEEDED(hRes) && (V_VT(&vtProp) != VT_NULL)) {
if ((vtProp.vt & VT_BSTR) == VT_BSTR)
{
// Do our comparaison
if (StrCmpI(vtProp.bstrVal, _T("System")) == 0) {
// Now, grab the Source property
VariantClear(&vtProp);
hRes = pclsObj->Get(_T("Sources"), 0, &vtProp, 0, 0);
// Get the number of elements of our SAFEARRAY
SAFEARRAY* saSources = vtProp.parray;
LONG* pVals;
HRESULT hr = SafeArrayAccessData(saSources, (VOID**)&pVals); // direct access to SA memory
if (SUCCEEDED(hr)) {
LONG lowerBound, upperBound;
SafeArrayGetLBound(saSources, 1, &lowerBound);
SafeArrayGetUBound(saSources, 1, &upperBound);
LONG iLength = upperBound - lowerBound + 1;
// Iteare over our array of BTSR
TCHAR* bstrItem;
for (LONG ix = 0; ix < iLength; ix++) {
SafeArrayGetElement(saSources, &ix, (void *)&bstrItem);
for (UINT id = 0; id < MaxVBoxSources; id++) {
if (_tcsicmp(bstrItem, szVBoxSources[id]) == 0)
{
bFound = TRUE;
break;
}
}
// break from upper level "for" on detection success
if (bFound)
break;
}
//unlock data
SafeArrayUnaccessData(saSources);
}
}
}
// release the current result object
VariantClear(&vtProp);
}
pclsObj->Release();
}
// Cleanup
pEnumerator->Release();
pSvc->Release();
pLoc->Release();
CoUninitialize();
}
}
return bFound;
}
BOOL vbox_firmware_SMBIOS()
{
BOOL result = FALSE;
DWORD smbiosSize = 0;
PBYTE smbios = get_system_firmware(static_cast<DWORD>('RSMB'), 0x0000, &smbiosSize);
if (smbios != NULL)
{
PBYTE virtualBoxString = (PBYTE)"VirtualBox";
size_t virtualBoxStringLen = 10;
PBYTE vboxLowerString = (PBYTE)"vbox";
size_t vboxLowerStringLen = 4;
PBYTE vboxUpperString = (PBYTE)"VBOX";
size_t vboxUpperStringLen = 4;
if (find_str_in_data(virtualBoxString, virtualBoxStringLen, smbios, smbiosSize) ||
find_str_in_data(vboxLowerString, vboxLowerStringLen, smbios, smbiosSize) ||
find_str_in_data(vboxUpperString, vboxUpperStringLen, smbios, smbiosSize))
{
result = TRUE;
}
free(smbios);
}
return result;
}
BOOL vbox_firmware_ACPI()
{
BOOL result = FALSE;
PDWORD tableNames = static_cast<PDWORD>(malloc(4096));
if (tableNames == NULL)
return FALSE;
SecureZeroMemory(tableNames, 4096);
DWORD tableSize = enum_system_firmware_tables(static_cast<DWORD>('ACPI'), tableNames, 4096);
// API not available
if (tableSize == -1)
return FALSE;
DWORD tableCount = tableSize / 4;
if (tableSize < 4 || tableCount == 0)
{
result = TRUE;
}
else
{
for (DWORD i = 0; i < tableCount; i++)
{
DWORD tableSize = 0;
PBYTE table = get_system_firmware(static_cast<DWORD>('ACPI'), tableNames[i], &tableSize);
if (table) {
PBYTE virtualBoxString = (PBYTE)"VirtualBox";
size_t virtualBoxStringLen = 10;
PBYTE vboxLowerString = (PBYTE)"vbox";
size_t vboxLowerStringLen = 4;
PBYTE vboxUpperString = (PBYTE)"VBOX";
size_t vboxUpperStringLen = 4;
if (find_str_in_data(virtualBoxString, virtualBoxStringLen, table, tableSize) ||
find_str_in_data(vboxLowerString, vboxLowerStringLen, table, tableSize) ||
find_str_in_data(vboxUpperString, vboxUpperStringLen, table, tableSize))
{
result = TRUE;
}
free(table);
}
}
}
free(tableNames);
return result;
}
/*
Check vbox devices using WMI
*/
BOOL vbox_pnpentity_pcideviceid_wmi()
{
IWbemServices *pSvc = NULL;
IWbemLocator *pLoc = NULL;
IEnumWbemClassObject* pEnumerator = NULL;
BOOL bStatus = FALSE;
HRESULT hRes;
BOOL bFound = FALSE;
// Init WMI
bStatus = InitWMI(&pSvc, &pLoc, _T("ROOT\\CIMV2"));
if (bStatus)
{
// If success, execute the desired query
bStatus = ExecWMIQuery(&pSvc, &pLoc, &pEnumerator, _T("SELECT * FROM Win32_PnPEntity"));
if (bStatus)
{
// Get the data from the query
IWbemClassObject *pclsObj = NULL;
ULONG uReturn = 0;
VARIANT vtProp;
while (pEnumerator)
{
hRes = pEnumerator->Next(WBEM_INFINITE, 1, &pclsObj, &uReturn);
if (0 == uReturn)
break;
// Get the value of the Name property
hRes = pclsObj->Get(_T("DeviceId"), 0, &vtProp, 0, 0);
if (SUCCEEDED(hRes)) {
if (vtProp.vt == VT_BSTR) {
// Do our comparaison
if (_tcsstr(vtProp.bstrVal, _T("PCI\\VEN_80EE&DEV_CAFE")) != 0)
{
bFound = TRUE;
}
}
VariantClear(&vtProp);
}
// release the current result object
pclsObj->Release();
if (bFound)
break;
}
// Cleanup
pSvc->Release();
pLoc->Release();
pEnumerator->Release();
CoUninitialize();
}
}
return bFound;
}
/*
Check Win32_PnPEntity for known VirtualBox hardware
*/
BOOL vbox_pnpentity_controllers_wmi()
{
IWbemServices *pSvc = NULL;
IWbemLocator *pLoc = NULL;
IEnumWbemClassObject* pEnumerator = NULL;
BOOL bStatus = FALSE;
HRESULT hRes;
BOOL bFound = FALSE;
// Init WMI
bStatus = InitWMI(&pSvc, &pLoc, _T("ROOT\\CIMV2"));
if (bStatus)
{
// If success, execute the desired query
bStatus = ExecWMIQuery(&pSvc, &pLoc, &pEnumerator, _T("SELECT * FROM Win32_PnPEntity"));
if (bStatus)
{
// Get the data from the query
IWbemClassObject *pclsObj = NULL;
ULONG uReturn = 0;
VARIANT vtProp;
int findCount = 0;
const int findThreshold = 3;
// Iterate over our enumator
while (pEnumerator)
{
hRes = pEnumerator->Next(WBEM_INFINITE, 1, &pclsObj, &uReturn);
if (0 == uReturn)
break;
// Get the value of the Name property
hRes = pclsObj->Get(_T("Name"), 0, &vtProp, 0, 0);
if (SUCCEEDED(hRes)) {
if (V_VT(&vtProp) != VT_NULL) {
if ((vtProp.vt & VT_BSTR) == VT_BSTR)
{
// increment the find counter if this instance matches any of the known VBox hardware
if (_tcsstr(vtProp.bstrVal, _T("82801FB")) != 0) {
findCount++;
}
else if (_tcsstr(vtProp.bstrVal, _T("82441FX")) != 0) {
findCount++;
}
else if (_tcsstr(vtProp.bstrVal, _T("82371SB")) != 0) {
findCount++;
}
else if (_tcsstr(vtProp.bstrVal, _T("OpenHCD")) != 0) {
findCount++;
}
}
// release the current result object
VariantClear(&vtProp);
}
}
pclsObj->Release();
}
if (findCount >= findThreshold)
{
bFound = TRUE;
}
// Cleanup
pEnumerator->Release();
pSvc->Release();
pLoc->Release();
CoUninitialize();
}
}
return bFound;
}
/*
Check Win32_Bus to see if only ACPIBus_BUS_0, PCI_BUS_0, PNP_BUS_0 are present
*/
BOOL vbox_bus_wmi()
{
IWbemServices *pSvc = NULL;
IWbemLocator *pLoc = NULL;
IEnumWbemClassObject* pEnumerator = NULL;
BOOL bStatus = FALSE;
HRESULT hRes;
BOOL bFound = FALSE;
// Init WMI
bStatus = InitWMI(&pSvc, &pLoc, _T("ROOT\\CIMV2"));
if (bStatus)
{
// If success, execute the desired query
bStatus = ExecWMIQuery(&pSvc, &pLoc, &pEnumerator, _T("SELECT * FROM Win32_Bus"));
if (bStatus)
{
// Get the data from the query
IWbemClassObject *pclsObj = NULL;
ULONG uReturn = 0;
VARIANT vtProp;
int count = 0;
int findCount = 0;
const int findThreshold = 3;
// Iterate over our enumator
while (pEnumerator)
{
hRes = pEnumerator->Next(WBEM_INFINITE, 1, &pclsObj, &uReturn);
if (0 == uReturn)
break;
count++;
// Get the value of the Name property
hRes = pclsObj->Get(_T("Name"), 0, &vtProp, 0, 0);
if (SUCCEEDED(hRes)) {
if (V_VT(&vtProp) != VT_NULL)
{
if ((vtProp.vt & VT_BSTR) == VT_BSTR)
{
// increment the find counter if this is
if (_tcsstr(vtProp.bstrVal, _T("ACPIBus_BUS_0")) != 0) {
findCount++;
}
else if (_tcsstr(vtProp.bstrVal, _T("PCI_BUS_0")) != 0) {
findCount++;
}
else if (_tcsstr(vtProp.bstrVal, _T("PNP_BUS_0")) != 0) {
findCount++;
}
}
// release the current result object
VariantClear(&vtProp);
}
}
pclsObj->Release();
}
// check that there are 3 instances and they match the strings above
if (count == findThreshold &&
findCount == findThreshold)
{
bFound = TRUE;
}
// Cleanup
pEnumerator->Release();
pSvc->Release();
pLoc->Release();
CoUninitialize();
}
}
return bFound;
}
/*
Check Win32_BaseBoard
*/
BOOL vbox_baseboard_wmi()
{
IWbemServices *pSvc = NULL;
IWbemLocator *pLoc = NULL;
IEnumWbemClassObject* pEnumerator = NULL;
BOOL bStatus = FALSE;
HRESULT hRes;
BOOL bFound = FALSE;
// Init WMI
bStatus = InitWMI(&pSvc, &pLoc, _T("ROOT\\CIMV2"));
if (bStatus)
{
// If success, execute the desired query
bStatus = ExecWMIQuery(&pSvc, &pLoc, &pEnumerator, _T("SELECT * FROM Win32_BaseBoard"));
if (bStatus)
{
// Get the data from the query
IWbemClassObject *pclsObj = NULL;
ULONG uReturn = 0;
VARIANT vtProp = { 0 };
// Iterate over our enumator
while (pEnumerator)
{
hRes = pEnumerator->Next(WBEM_INFINITE, 1, &pclsObj, &uReturn);
if (0 == uReturn)
break;
// Get the value of the Product property
hRes = pclsObj->Get(_T("Product"), 0, &vtProp, 0, 0);
if (SUCCEEDED(hRes)) {
if (V_VT(&vtProp) != VT_NULL) {
if ((vtProp.vt & VT_BSTR) == VT_BSTR)
{
// Do our comparison
if (_tcsstr(vtProp.bstrVal, _T("VirtualBox")) != 0) {
bFound = TRUE;
}
}
// release the current result object
VariantClear(&vtProp);
}
}
vtProp = { 0 };
// Get the value of the Manufacturer property
hRes = pclsObj->Get(_T("Manufacturer"), 0, &vtProp, 0, 0);
if (SUCCEEDED(hRes)) {
if (V_VT(&vtProp) != VT_NULL) {
if ((vtProp.vt & VT_BSTR) == VT_BSTR)
{
// Do our comparison
if (_tcsstr(vtProp.bstrVal, _T("Oracle Corporation")) != 0) {
bFound = TRUE;
}
}
// release the current result object
VariantClear(&vtProp);
}
}
pclsObj->Release();
// break from while
if (bFound)
break;
}
// Cleanup
pEnumerator->Release();
pSvc->Release();
pLoc->Release();
CoUninitialize();
}
}
return bFound;
}
/*
Check Win32_PnPDevice for VBOX entries
*/
BOOL vbox_pnpentity_vboxname_wmi()
{
IWbemServices *pSvc = NULL;
IWbemLocator *pLoc = NULL;
IEnumWbemClassObject* pEnumerator = NULL;
BOOL bStatus = FALSE;
HRESULT hRes;
BOOL bFound = FALSE;
// Init WMI
bStatus = InitWMI(&pSvc, &pLoc, _T("ROOT\\CIMV2"));
if (bStatus)
{
// If success, execute the desired query
bStatus = ExecWMIQuery(&pSvc, &pLoc, &pEnumerator, _T("SELECT * FROM Win32_PnPDevice"));
if (bStatus)
{
// Get the data from the query
IWbemClassObject *pclsObj = NULL;
ULONG uReturn = 0;
VARIANT vtProp;
// Iterate over our enumator
while (pEnumerator)
{
hRes = pEnumerator->Next(WBEM_INFINITE, 1, &pclsObj, &uReturn);
if (0 == uReturn)
break;
// Get the value of the Name property
hRes = pclsObj->Get(_T("Name"), 0, &vtProp, 0, 0);
if (SUCCEEDED(hRes)) {
if (V_VT(&vtProp) != VT_NULL) {
if ((vtProp.vt & VT_BSTR) == VT_BSTR)
{
// Do our comparison
if (_tcsstr(vtProp.bstrVal, _T("VBOX")) != 0) {
bFound = TRUE;
}
}
// release the current result object
VariantClear(&vtProp);
}
}
// Get the value of the Caption property
hRes = pclsObj->Get(_T("Caption"), 0, &vtProp, 0, 0);
if (SUCCEEDED(hRes)) {
if (V_VT(&vtProp) != VT_NULL) {
if ((vtProp.vt & VT_BSTR) == VT_BSTR)
{
// Do our comparison
if (_tcsstr(vtProp.bstrVal, _T("VBOX")) != 0) {
bFound = TRUE;
}
}
// release the current result object
VariantClear(&vtProp);
}
}
// Get the value of the PNPDeviceID property
hRes = pclsObj->Get(_T("PNPDeviceID"), 0, &vtProp, 0, 0);
if (SUCCEEDED(hRes)) {
if (V_VT(&vtProp) != VT_NULL) {
if ((vtProp.vt & VT_BSTR) == VT_BSTR)
{
// Do our comparison
if (_tcsstr(vtProp.bstrVal, _T("VEN_VBOX")) != 0) {
bFound = TRUE;
}
}
// release the current result object
VariantClear(&vtProp);
}
}
pclsObj->Release();
// break from while
if (bFound)
break;
}
// Cleanup
pEnumerator->Release();
pSvc->Release();
pLoc->Release();
CoUninitialize();
}
}
return bFound;
}