ionescu007 / SimpleVisor

SimpleVisor is a simple, portable, Intel VT-x hypervisor with two specific goals: using the least amount of assembly code (10 lines), and having the smallest amount of VMX-related code to support dynamic hyperjacking and unhyperjacking (that is, virtualizing the host state from within the host). It works on Windows and UEFI.
http://ionescu007.github.io/SimpleVisor/
1.69k stars 259 forks source link

EPT hook example #40

Closed YangKi1902 closed 5 years ago

YangKi1902 commented 5 years ago

Hello, is there any EPT hook example by SimpleVisor ?

ionescu007 commented 5 years ago

No — please take a look at HyperPlatform for that :)

On Fri, May 3, 2019 at 9:57 PM InvisK notifications@github.com wrote:

Hello, is there any EPT hook example by SimpleVisor ?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/ionescu007/SimpleVisor/issues/40, or mute the thread https://github.com/notifications/unsubscribe-auth/ABOEQ6HA77NHLFLRBRI334LPTUJTPANCNFSM4HKYDQLQ .

-- Best regards, Alex Ionescu

rianquinn commented 5 years ago

DdiMon (and friends) provides a nice example of this: https://github.com/tandasat/DdiMon

We also provide a simple EPT hook example, but it is for userspace: https://github.com/Bareflank/hypervisor/tree/master/examples/hook

YangKi1902 commented 5 years ago

hi, thanks for the suggestions.