Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ionescu007/SimpleVisor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Sylve <joe.sylve@gmail.com>2016-04-17 01:20:01 +0300
committerJoe Sylve <joe.sylve@gmail.com>2016-04-17 01:22:28 +0300
commitff0b5f4fa14a14582597b42fcf0eb8eba0029abc (patch)
tree5ac0512ac4f5c2dc55cc4c1fac9f41e4c74a3d15
parent43383d780a7fead017c5c0dd47fde1fcebbbd1d5 (diff)
Fixed link to MoRE project in documentation
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index babdbbe..3d9bc17 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ Keep in mind that x86 versions of Windows are expressly not supported, nor are p
Too many hypervisor projects out there are either extremely complicated ([Xen][1], KVM, VirtualBox) and/or closed-source (VMware, Hyper-V), as well as heavily focused toward Linux-based development or system. Additionally, most (other than Hyper-V) of them are expressly built for the purpose of enabling the execution of virtual machines, and not the virtualization of a live, running system, in order to perform introspection or other security-related tasks on it.
-A few projects do stand out from the fold however, such as the original [Blue Pill][2] from Johanna, or projects such as [VirtDbg][3] and [HyperDbg][4]. Unfortunately, most of these have become quite old by now, and some only function on x86 processors, and don't support newer operating systems such as Windows 10. Another rather simple example, similar to Blue Pill in some aspects, but actually delivering a good example of EPT use for "Split-TLB" is [MoRE][6] from Jacob Torrey/AIS.
+A few projects do stand out from the fold however, such as the original [Blue Pill][2] from Johanna, or projects such as [VirtDbg][3] and [HyperDbg][4]. Unfortunately, most of these have become quite old by now, and some only function on x86 processors, and don't support newer operating systems such as Windows 10. Another rather simple example, similar to Blue Pill in some aspects, but actually delivering a good example of EPT use for "Split-TLB" is [MoRE][7] from Jacob Torrey/AIS.
The closest project that actually delivers a Windows-centric, modern, and supported hypervisor is [HyperPlatform][5], and we strongly recommend its use as a starting place for more broadly usable research-type hypervisor development. However, in attempting to create a generic "platform" that is more broadly robust, HyperPlatform also suffers from a bit of bloat, making it harder to understand what truly are the basic needs of a hypervisor, and how to initialize one. In a similar vein, and showing an equal love for STL/C++, but also including an ELF loader and UEFI/Linux support alongside unit tests and even more robustness is [Bareflank][7], also from AIS. Beyond that, you're probably getting into Xen-level complexity.