Skip to content

Commit

Permalink
alpha release test 4
Browse files Browse the repository at this point in the history
  • Loading branch information
kernelwernel committed Dec 26, 2023
1 parent 8e85a31 commit 6a1ed95
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 0 additions & 2 deletions docs/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,6 @@ VMAware provides a convenient way to not only check for VMs, but also have the f
| `VM::QEMU_BRAND` | Check for QEMU CPU brand with cpuid | Yes | 100% | |
| `VM::BOCHS_CPU` | Check for Bochs cpuid emulation oversights | Yes | 95% | |
| `VM::VPC_BOARD` | Check for VPC specific string in motherboard manufacturer | Windows | 20% | |
| `VM::HYPERV_WMI` | Check for Hyper-V wmi output | Windows | 80% | |
| `VM::HYPERV_REG` | Check for Hyper-V strings in registry | Windows | 80% | |
| `VM::BIOS_SERIAL` | Check if BIOS serial number is null | Windows | 60% | |
| `VM::VBOX_FOLDERS` | Check for VirtualBox-specific string for shared folder ID | Windows | 45% | |
| `VM::VBOX_MSSMBIOS` | Check VirtualBox MSSMBIOS registry for VM-specific strings | Windows 75% | |
Expand Down
2 changes: 0 additions & 2 deletions src/cli.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,6 @@ int main(int argc, char* argv[]) {
checker(VM::BOCHS_CPU, "BOCHS CPU techniques");
checker(VM::VPC_BOARD, "VirtualPC motherboard");
checker(VM::BIOS_SERIAL, "BIOS serial number");
checker(VM::HYPERV_WMI, "Hyper-V WMI");
checker(VM::HYPERV_REG, "Hyper-V registry");
checker(VM::VBOX_FOLDERS, "VirtualBox shared folders");
checker(VM::VBOX_MSSMBIOS, "VirtualBox MSSMBIOS");

Expand Down
4 changes: 2 additions & 2 deletions src/vmaware.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4425,8 +4425,8 @@ const std::map<VM::u64, VM::technique> VM::table = {
{ VM::QEMU_BRAND, { 100, VM::cpu_brand_qemu }},
{ VM::BOCHS_CPU, { 95, VM::bochs_cpu }},
{ VM::VPC_BOARD, { 20, VM::vpc_board }},
{ VM::HYPERV_WMI, { 80, VM::hyperv_wmi }},
{ VM::HYPERV_REG, { 80, VM::hyperv_registry }},
// { VM::HYPERV_WMI, { 80, VM::hyperv_wmi }}, TODO: FIX
// { VM::HYPERV_REG, { 80, VM::hyperv_registry }}, SAME
{ VM::BIOS_SERIAL, { 60, VM::bios_serial }},
{ VM::VBOX_FOLDERS, { 45, VM::vbox_shared_folders }},
{ VM::VBOX_MSSMBIOS, { 75, VM::vbox_mssmbios }}
Expand Down

0 comments on commit 6a1ed95

Please sign in to comment.