├── README.md ├── hypervisor-manager ├── CpuId.asm ├── DetectVmxSupport.asm ├── main.cpp └── svm_control.h └── hypervisorr ├── CpuId.asm ├── CpuStructs.h ├── EnterSVM.asm ├── ExitHandler.cpp ├── ExitHandler.h ├── InitVirt.cpp ├── InitVirt.h ├── cpu_codes.h ├── helpers.cpp ├── helpers.h ├── main.cpp ├── mem.cpp ├── mem.h └── vmcb.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColeStrickler/1337Visor/HEAD/README.md -------------------------------------------------------------------------------- /hypervisor-manager/CpuId.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColeStrickler/1337Visor/HEAD/hypervisor-manager/CpuId.asm -------------------------------------------------------------------------------- /hypervisor-manager/DetectVmxSupport.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColeStrickler/1337Visor/HEAD/hypervisor-manager/DetectVmxSupport.asm -------------------------------------------------------------------------------- /hypervisor-manager/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColeStrickler/1337Visor/HEAD/hypervisor-manager/main.cpp -------------------------------------------------------------------------------- /hypervisor-manager/svm_control.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /hypervisorr/CpuId.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColeStrickler/1337Visor/HEAD/hypervisorr/CpuId.asm -------------------------------------------------------------------------------- /hypervisorr/CpuStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColeStrickler/1337Visor/HEAD/hypervisorr/CpuStructs.h -------------------------------------------------------------------------------- /hypervisorr/EnterSVM.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColeStrickler/1337Visor/HEAD/hypervisorr/EnterSVM.asm -------------------------------------------------------------------------------- /hypervisorr/ExitHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColeStrickler/1337Visor/HEAD/hypervisorr/ExitHandler.cpp -------------------------------------------------------------------------------- /hypervisorr/ExitHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColeStrickler/1337Visor/HEAD/hypervisorr/ExitHandler.h -------------------------------------------------------------------------------- /hypervisorr/InitVirt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColeStrickler/1337Visor/HEAD/hypervisorr/InitVirt.cpp -------------------------------------------------------------------------------- /hypervisorr/InitVirt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColeStrickler/1337Visor/HEAD/hypervisorr/InitVirt.h -------------------------------------------------------------------------------- /hypervisorr/cpu_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColeStrickler/1337Visor/HEAD/hypervisorr/cpu_codes.h -------------------------------------------------------------------------------- /hypervisorr/helpers.cpp: -------------------------------------------------------------------------------- 1 | #include "helpers.h" 2 | 3 | 4 | -------------------------------------------------------------------------------- /hypervisorr/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColeStrickler/1337Visor/HEAD/hypervisorr/helpers.h -------------------------------------------------------------------------------- /hypervisorr/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColeStrickler/1337Visor/HEAD/hypervisorr/main.cpp -------------------------------------------------------------------------------- /hypervisorr/mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColeStrickler/1337Visor/HEAD/hypervisorr/mem.cpp -------------------------------------------------------------------------------- /hypervisorr/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColeStrickler/1337Visor/HEAD/hypervisorr/mem.h -------------------------------------------------------------------------------- /hypervisorr/vmcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColeStrickler/1337Visor/HEAD/hypervisorr/vmcb.h --------------------------------------------------------------------------------