├── .gitattributes ├── .gitignore ├── Hypervisor-Detection.sln ├── Hypervisor-Detection ├── Hypervisor-Detection.cpp ├── Hypervisor-Detection.vcxproj ├── Hypervisor-Detection.vcxproj.filters ├── asm32.asm └── asm64.asm ├── LICENSE ├── README.md └── Screenshots ├── any_run.png ├── clean.png ├── hyperv.png └── vmware.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/void-stack/Hypervisor-Detection/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/void-stack/Hypervisor-Detection/HEAD/.gitignore -------------------------------------------------------------------------------- /Hypervisor-Detection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/void-stack/Hypervisor-Detection/HEAD/Hypervisor-Detection.sln -------------------------------------------------------------------------------- /Hypervisor-Detection/Hypervisor-Detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/void-stack/Hypervisor-Detection/HEAD/Hypervisor-Detection/Hypervisor-Detection.cpp -------------------------------------------------------------------------------- /Hypervisor-Detection/Hypervisor-Detection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/void-stack/Hypervisor-Detection/HEAD/Hypervisor-Detection/Hypervisor-Detection.vcxproj -------------------------------------------------------------------------------- /Hypervisor-Detection/Hypervisor-Detection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/void-stack/Hypervisor-Detection/HEAD/Hypervisor-Detection/Hypervisor-Detection.vcxproj.filters -------------------------------------------------------------------------------- /Hypervisor-Detection/asm32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/void-stack/Hypervisor-Detection/HEAD/Hypervisor-Detection/asm32.asm -------------------------------------------------------------------------------- /Hypervisor-Detection/asm64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/void-stack/Hypervisor-Detection/HEAD/Hypervisor-Detection/asm64.asm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/void-stack/Hypervisor-Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/void-stack/Hypervisor-Detection/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/any_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/void-stack/Hypervisor-Detection/HEAD/Screenshots/any_run.png -------------------------------------------------------------------------------- /Screenshots/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/void-stack/Hypervisor-Detection/HEAD/Screenshots/clean.png -------------------------------------------------------------------------------- /Screenshots/hyperv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/void-stack/Hypervisor-Detection/HEAD/Screenshots/hyperv.png -------------------------------------------------------------------------------- /Screenshots/vmware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/void-stack/Hypervisor-Detection/HEAD/Screenshots/vmware.png --------------------------------------------------------------------------------