├── .github └── workflows │ └── go.yml ├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── main.go ├── paper ├── 00_header.md ├── 10_abstract.md ├── 20_virtualisation.md ├── 30_state_of_the_art.md ├── 31_common.md ├── 32_linux.md ├── 33_windows.md ├── 40_sources.md ├── README.md ├── img │ ├── container.png │ └── hypervisors.png └── paper.pdf └── vmdetect ├── common.go ├── common_test.go ├── linux.go ├── linux_test.go └── windows.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/main.go -------------------------------------------------------------------------------- /paper/00_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/paper/00_header.md -------------------------------------------------------------------------------- /paper/10_abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/paper/10_abstract.md -------------------------------------------------------------------------------- /paper/20_virtualisation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/paper/20_virtualisation.md -------------------------------------------------------------------------------- /paper/30_state_of_the_art.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/paper/30_state_of_the_art.md -------------------------------------------------------------------------------- /paper/31_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/paper/31_common.md -------------------------------------------------------------------------------- /paper/32_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/paper/32_linux.md -------------------------------------------------------------------------------- /paper/33_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/paper/33_windows.md -------------------------------------------------------------------------------- /paper/40_sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/paper/40_sources.md -------------------------------------------------------------------------------- /paper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/paper/README.md -------------------------------------------------------------------------------- /paper/img/container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/paper/img/container.png -------------------------------------------------------------------------------- /paper/img/hypervisors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/paper/img/hypervisors.png -------------------------------------------------------------------------------- /paper/paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/paper/paper.pdf -------------------------------------------------------------------------------- /vmdetect/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/vmdetect/common.go -------------------------------------------------------------------------------- /vmdetect/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/vmdetect/common_test.go -------------------------------------------------------------------------------- /vmdetect/linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/vmdetect/linux.go -------------------------------------------------------------------------------- /vmdetect/linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/vmdetect/linux_test.go -------------------------------------------------------------------------------- /vmdetect/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellCode33/VM-Detection/HEAD/vmdetect/windows.go --------------------------------------------------------------------------------