Skip to content

Commit 3a168c6

Browse files
authored
Merge pull request #622 from NotRequiem/main
MacBook Pro 15 support
2 parents 57ae4cf + ecf46fa commit 3a168c6

4 files changed

Lines changed: 345 additions & 354 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The library is:
2525
- Cross-platform (Windows + MacOS + Linux)
2626
- Features around 90 unique VM detection techniques [[list](https://github.com/kernelwernel/VMAware/blob/main/docs/documentation.md#flag-table)]
2727
- Features the most cutting-edge techniques
28-
- Able to detect over 70 VM brands including VMware, VirtualBox, QEMU, Hyper-V, and much more [[list](https://github.com/kernelwernel/VMAware/blob/main/docs/documentation.md#brand-table)]
28+
- Able to detect around 70 VM brands including VMware, VirtualBox, QEMU, Hyper-V, and much more [[list](https://github.com/kernelwernel/VMAware/blob/main/docs/documentation.md#brand-table)]
2929
- Able to beat VM hardeners
3030
- Compatible with x86 and ARM, with backwards compatibility for 32-bit systems
3131
- Very flexible, with total fine-grained control over which techniques get executed

docs/documentation.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,6 @@ This is the table of all the brands the lib supports.
650650
| Apple VZ | `brands::APPLE_VZ` | Unknown | |
651651
| Intel KGT (Trusty) | `brands::INTEL_KGT` | Hypervisor (type 1) | |
652652
| Microsoft Azure Hyper-V | `brands::AZURE_HYPERV` | Hypervisor (type 1) | |
653-
| Xbox NanoVisor (Hyper-V) | `brands::NANOVISOR` | Hypervisor (type 1) | |
654653
| SimpleVisor | `brands::SIMPLEVISOR` | Hypervisor (type 1) | |
655654
| Hyper-V artifact (not an actual VM) | `brands::HYPERV_ARTIFACT` | Unknown | Windows Hyper-V has a tendency to modify host hardware values with VM values. In other words, this brand signifies that you're running on a host system, but the Hyper-V that's installed (either by default or manually by the user) is misleadingly making the whole system look like it's in a VM when in reality it's not. <br><br> For more information, refer to [this graph](https://github.com/kernelwernel/VMAware/blob/main/assets/hyper-x/v5/Hyper-X_version_5.drawio.png). |
656655
| User-mode Linux | `brands::UML` | Paravirtualised/Hypervisor (type 2) | |

src/cli.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,6 @@ static const char* get_vm_description(const std::string& vm_brand) {
444444
{ brands::APPLE_VZ, "Apple Virtualization Framework (VZ) is a macOS 12+ API for creating ARM64 VMs on Apple Silicon. Provides para-virtualized devices via VirtIO and Rosetta 2 binary translation for x86_64 Linux guests. Used by Lima and UTM to run Linux distributions natively on M1/M2 Macs without traditional hypervisor overhead." },
445445
{ brands::INTEL_KGT, "Intel Kernel Guard Technology (KGT) is a policy specification and enforcement framework for ensuring runtime integrity of kernel and platform assets. Demonstrated secure enclaves for critical OS components using VT-x/EPT before being superseded by CET (Control-flow Enforcement Technology) and HyperGuard in Windows 10." },
446446
{ brands::AZURE_HYPERV, "Azure Hyper-V is Microsoft's cloud-optimized hypervisor variant powering Azure VMs. Implements Azure-specific virtual devices like NVMe Accelerated Networking and vTPMs. Supports nested virtualization for running Hyper-V/containers within Azure VMs, enabling cloud-based CI/CD pipelines and dev/test environments." },
447-
{ brands::NANOVISOR, "NanoVisor is a Hyper-V modification serving as the host OS of Xbox's devices: the Xbox System Software. It contains 2 partitions: the \"Exclusive\" partition is a custom VM for games, while the other partition, called the \"Shared\" partition is a custom VM for running multiple apps including the OS itself. The OS was based on Windows 8 Core at the Xbox One launch in 2013." },
448447
{ brands::SIMPLEVISOR, "SimpleVisor is a minimalist Intel VT-x hypervisor by Alex Ionescu for Windows/Linux research. Demonstrates EPT-based memory isolation and hypercall handling. Used to study VM escapes and hypervisor rootkits, with hooks for intercepting CR3 changes and MSR accesses." },
449448
{ brands::HYPERV_ARTIFACT, "VMAware detected Hyper-V operating as a type 1 hypervisor, not as a guest virtual machine. Although your hardware/firmware signatures match Microsoft's Hyper-V architecture, we determined that you're running on baremetal. This prevents false positives, as Windows sometimes runs under Hyper-V (type 1) hypervisor." },
450449
{ brands::UML, "User-Mode Linux (UML) allows running Linux kernels as user-space processes using ptrace-based virtualization. Primarily used for kernel debugging and network namespace testing. Offers lightweight isolation without hardware acceleration, but requires host/guest kernel version matching for stable operation." },
@@ -763,7 +762,7 @@ static void general(
763762
checker(VM::VMWARE_STR, "STR instruction");
764763
checker(VM::VMWARE_BACKDOOR, "VMware IO port backdoor");
765764
checker(VM::MUTEX, "mutex strings");
766-
checker(VM::THREAD_MISMATCH, "Thread count mismatch");
765+
checker(VM::THREAD_MISMATCH, "thread count mismatch");
767766
checker(VM::CUCKOO_DIR, "Cuckoo directory");
768767
checker(VM::CUCKOO_PIPE, "Cuckoo pipe");
769768
checker(VM::AZURE, "Azure Hyper-V");

0 commit comments

Comments
 (0)