All Projects → amiryeshurun → Hyperwin

amiryeshurun / Hyperwin

Licence: gpl-3.0
A native hypervisor designed for the Windows operating system

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Hyperwin

Hdk
(unofficial) Hyper-V® Development Kit
Stars: ✭ 166 (+107.5%)
Mutual labels:  virtualization, hypervisor
Microverse
macOS virtualization app for M1/Apple Silicon
Stars: ✭ 71 (-11.25%)
Mutual labels:  virtualization, hypervisor
Noirvisor
Hardware-Accelerated Hypervisor solution for complex functions and purposes.
Stars: ✭ 186 (+132.5%)
Mutual labels:  virtualization, hypervisor
Napoca
Lightweight type-1 hypervisor offering a foundation for building advanced security-focused functionality.
Stars: ✭ 135 (+68.75%)
Mutual labels:  virtualization, hypervisor
Icebox
Virtual Machine Introspection, Tracing & Debugging
Stars: ✭ 422 (+427.5%)
Mutual labels:  virtualization, hypervisor
uvmm
Virtual machine monitor for L4Re
Stars: ✭ 22 (-72.5%)
Mutual labels:  virtualization, hypervisor
Hypervisor
Hypervisor implementation for x86_64 ISA MIT JOS
Stars: ✭ 25 (-68.75%)
Mutual labels:  virtualization, hypervisor
M7M01 MuEukaron
An capability-based microkernel general-purpose operating system focusing on scalability, predictability, mixed-criticality and recoverability. THIS PROJECT IS IN PREVIEW STATE CURRENTLY
Stars: ✭ 79 (-1.25%)
Mutual labels:  virtualization, hypervisor
Xen Orchestra
The complete web solution to manage and backup XCP-ng and Citrix Hypervisor.
Stars: ✭ 358 (+347.5%)
Mutual labels:  virtualization, hypervisor
Learn Kvm
Qemu KVM(Kernel Virtual Machine)学习笔记
Stars: ✭ 305 (+281.25%)
Mutual labels:  virtualization, hypervisor
Ksm
A fast, hackable and simple x64 VT-x hypervisor for Windows and Linux. Builtin userspace sandbox and introspection engine.
Stars: ✭ 673 (+741.25%)
Mutual labels:  virtualization, hypervisor
Hvpp
hvpp is a lightweight Intel x64/VT-x hypervisor written in C++ focused primarily on virtualization of already running operating system
Stars: ✭ 637 (+696.25%)
Mutual labels:  virtualization, hypervisor
Awesome Virtualization
Collection of resources about Virtualization
Stars: ✭ 846 (+957.5%)
Mutual labels:  virtualization, hypervisor
Mythril
A hypervisor written in rust
Stars: ✭ 43 (-46.25%)
Mutual labels:  hypervisor
Firecracker Containerd
firecracker-containerd enables containerd to manage containers as Firecracker microVMs
Stars: ✭ 1,130 (+1312.5%)
Mutual labels:  virtualization
Rpot
Real-time Packet Observation Tool
Stars: ✭ 38 (-52.5%)
Mutual labels:  virtualization
Ideas
Ideas for protecting C/C++
Stars: ✭ 37 (-53.75%)
Mutual labels:  virtualization
Cot
Common OVF Tool
Stars: ✭ 73 (-8.75%)
Mutual labels:  virtualization
Virtualbox Org Svn Vbox Trunk
*UNOFFICIAL* mirror of the repository at http://www.virtualbox.org/svn/vbox/trunk (the first 30569 commits are courtesy of https://gitorious.org/virtualbox/mainlinemirror); Please **DO NOT** open pull requests against this repo
Stars: ✭ 62 (-22.5%)
Mutual labels:  virtualization
Addon Lxdone
Allows OpenNebula to manage Linux Containers via LXD
Stars: ✭ 36 (-55%)
Mutual labels:  virtualization

Build License

HyperWin

HyperWin is a native hypervisor designed for Windows (x64 only) running on Intel processors. The whole system consists three major components: a hypervisor, a driver and a command line application. Using the command-line application, you can send IOCTL codes to the communication driver that will eventually reach the hypervisor. HyperWin provides many interesting features, including:

  • Creation of memory regions hidden from the operating system (using EPT and a hidden hook on E820)
  • PatchGuard bypassing
  • Sensitive data protection via IRP hooking (User-Mode & Kernel-Mode)
  • Smart process management
  • A (very!) generic hooking module

And much more!

Sensitive Data Protection

HyperWin can help you prevent read operations from files that contain sensitive data. Using the command-line application you can configure new sensitive files, as follows:

protect-file-data -p "C:\Users\Amir\Desktop\Sample.txt" -h "a" -e "utf-8"

Where -p stands for path, -h stands for hide and -e means encoding type.

The above request tells HyperWin to censor all appearances of the letter a in C:\Users\Amir\Desktop\Sample.txt.

How it works?

HyperWin intercepts all attempts to access files using NtfsFsdRead and NtfsCopyReadA. The former is called whenever an IRP (Io Request Packet) is issued in order to read the content of a file, whereas the latter is used by the Fast Io mechanism (only available when the file is cached). Based on the file id (MFTIndex which resides in the FCB) of Sample.txt, HyperWin censors the data that was readen by the NTFS driver.

Compilation

HyperWin can be installed on any computer that is using an MBR disk. The compilation process is super easy:

$ cd HyperWin
$ make

After running the above commands, a new file called hypervisor.iso will be generated inside the build directory. Burn it to a USB stick, plug the stick to a computer and make sure to change the boot order from the BIOS menu (the USB stick must be chosen as the first option). Once the computer boots to HyperWin, it will automatically load Windows after it finishes the initialization process.

License

HyperWin is licensed under the GPL v3.0 license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].