A lightweight, memory-safe, and blazingly fast Rust-based type-2 research hypervisor with hooks for Intel VT-x, focused on studying the core concepts of virtualization.
Note: The Illusion hypervisor (Windows UEFI Blue Pill Type-1 Hypervisor in Rust) is more stable, supports more features, and is overall better designed. The Matrix hypervisor (Windows Kernel Blue Pill Type-2 Hypervisor in Rust) is an older, experimental version and is not intended for production use. Both projects serve as templates to help people get started with hypervisor development in Rust.
- ✅ Extended Page Tables (EPT): Support for Memory Type Range Registers (MTRR).
- ✅ VM Exit Handling: Handling of
ExceptionOrNmi (#GP, #PF, #BP, #UD)
,Cpuid
,Getsec
,Vmcall
,Vmclear
,Vmlaunch
,Vmptrld
,Vmptrst
,Vmresume
,Vmxon
,Vmxoff
Rdmsr
,Wrmsr
,Invd
,Rdtsc
,EptViolation
,EptMisconfiguration
,Invept
,Invvpid
,Xsetbv
. - ✅ Hidden Kernel Inline Hooks: PatchGuard-compatible breakpoint (
int3
) hooks. - ✅ Hidden System Call (Syscall) Hooks: PatchGuard-compatible hooks for System Service Descriptor Table (SSDT) function entries.
- ✅ Isolation and Security: Custom implementations of the Global Descriptor Table (GDT), Interrupt Descriptor Table (IDT), and Page Tables to improve the security and isolation of the hypervisor. Credits to @namazso for raising awareness.
- ✅ Intel processors with VT-x and Extended Page Tables (EPT) support.
- ❌ AMD processors with AMD-V (SVM) and Nested Page Tables (NPT) support.
- ✅ Windows 10 - Windows 11, x64 only.
- Install Rust from here.
- Switch to Rust Nightly:
rustup toolchain install nightly
andrustup default nightly
. - Install LLVM:
winget install LLVM.LLVM
. - Install Tools:
cargo install cargo-make cargo-expand cargo-edit cargo-workspaces
. - Install WDK/SDK/EWDK: Steps here.
- Set the
WDKContentRoot
environment variable to point to your WDK installation path, If it hasn't been set automatically during the WDK installation:
[System.Environment]::SetEnvironmentVariable("WDKContentRoot", "C:\Program Files (x86)\Windows Kits\10", [System.EnvironmentVariableTarget]::User)
- Development:
cargo make --profile development
. - Production:
cargo make --profile release
.
- Test Mode: Activate test signing with
bcdedit.exe /set testsigning on
. - Windows Debugging: Follow the steps in this Microsoft guide.
bcdedit.exe /bootdebug {bootmgr} on
bcdedit.exe /bootdebug on
bcdedit.exe /debug on
Setup: bcdedit.exe /dbgsettings net hostip:w.x.y.z port:n
.
- Open
regedit.exe
. - Go to
HKLM\SYSTEM\CurrentControlSet\Control\Session Manager
. - Create
Debug Print Filter
withDEFAULT
DWORD =8
.
- Add Serial Port in VMware: 'Use output file'.
- Configure in Windows VM:
$serialPort = New-Object System.IO.Ports.SerialPort COM2,9600,None,8,One; $serialPort.Open()
.
Use Service Controller (sc.exe
) to create and manage the hypervisor service:
sc.exe create matrix type= kernel binPath= C:\Windows\System32\drivers\matrix.sys
sc.exe query matrix
sc.exe start matrix
-
Setup for VMware Workstation
Build the Project: Follow the build instructions provided in the previous sections to compile the project.
-
Set Up VMware Workstation
Configure the VMware serial port for debugging.
Figure 1: VMware Serial Port Settings
Ensure that "Virtualize Intel VT-x/EPT or AMD-V/RVI"
is enabled and "Virtualize IOMMU (IO memory management unit)"
is enabled.
Figure 2: VMware Processors Settings
-
Copy the Driver
Copy the
matrix.sys
driver to theC:\Windows\System32\drivers
directory. -
VMware Serial Port Debugging
Execute the PowerShell script in the Serial Port Debugging section to open the serial port.
-
Load the Hypervisor
Use the
load.ps1
PowerShell script shown in the Service Management section to create and start the hypervisor service.
Figure 4: Logs and Windbg PoC Setup
Figure 5: Logs and Windbg PoC Execute
Big thanks to the amazing people and resources that have shaped this project. A special shout-out to everyone listed below. While I didn't use all these resources in my work, they've been goldmines of information, super helpful for anyone diving into hypervisor development, including me.
-
Daax (@daaximus): For his outstanding free series on hypervisor development, which is one of the best resources available and has greatly influenced my work with its thorough research and clear explanations. His support and answers to my questions were invaluable in getting me started with hypervisor development:
-
Satoshi Tanda (@tandasat): Satoshi Tanda's guidance, projects, and structured training programs have been incredibly helpful. His detailed explanations and contributions on GitHub have significantly enhanced my understanding, making him a great mentor throughout my journey:
- Hypervisor Development for Security Researchers.
- Hypervisor 101 in Rust.
- Additional Projects: Hello-VT-rp, DdiMon, HyperPlatform, MiniVisorPkg.
-
Jess (@jessiep_): For his invaluable support and collaboration in several areas of this project, providing essential insights and expertise, and for his quick responses to my questions.
-
Drew (@drew): For his help, guidance, and quick responses to my questions in various aspects of hypervisor development.
-
Sina Karvandi (@Intel80x86): For his detailed free Hypervisor From Scratch series:
-
Matthias (@not-matthias): For his impactful work on the amd_hypervisor project, which greatly inspired and influenced this research.
-
Nick Peterson (@everdox) and Aidan Khoury (@ajkhoury): For their insightful explorations into hypervisor introspection and syscall hooking:
-
Secret Club: Insights into anti-cheat systems and hypervisor detection, which also inspired this project:
-
Other Essential Resources:
- Intel's Software Developer's Manual.
- Maurice Heumann's (@momo5502) Detecting Hypervisor-Assisted Hooking.
- Guided Hacking's x64 Virtual Address Translation on YouTube.
- UnKnoWnCheaTs forum post by @namazso.
- RVM1.5, Barbervisor, rustyvisor, orange_slice, mythril, uhyve, maystorm.
- AMD-V Hypervisor Development by Back Engineering, bluepill by @_xeroxz.
- hvpp by @wbenny.
- HyperHide by @Air14.
- How AetherVisor works under the hood by M3ll0wN1ght.
- Rust library to use x86 (amd64) specific functionality and registers (x86 crate for Rust).
- DarthTon's HyperBone (based on the legendary Alex Ionescu's version) on UnknownCheats.
- Joanna Rutkowska: Pioneering the Blue Pill Hypervisor Concept, one of the earliest proofs of concept.
Special thanks to:
- Daax.
- Satoshi Tanda (@tandasat).
- Drew (@drew).
- iPower (@iPower).
- Namazso (@namazso).
- Jess (@jessiep_).
- Matthias @not-matthias.
- @felix-rs / @joshuа.
- Ryan McCrystal / @rmccrystal.
- Jim Colerick (@vmprotect).
This project is licensed under the MIT License. For more information, see the MIT License details.