We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62e9ae3 commit b31df47Copy full SHA for b31df47
README.md
@@ -4,6 +4,15 @@ This project is a Go implementation of well-known techniques trying to detect if
4
5
Why doing this in Go ? Because there are many C programs already doing this, but none written in pure Go.
6
7
+## Installation
8
+
9
+First download the package
10
+```
11
+$ go get github.com/ShellCode33/VM-Detection/vmdetect
12
13
14
+Then see  to see how to use it.
15
16
## GNU/Linux techniques
17
18
- Look for known strings in the DMI table (/dev/mem)
main.go
@@ -1,7 +1,7 @@
1
package main
2
3
import (
- "VM-Detection/vmdetect"
+ "github.com/ShellCode33/VM-Detection/vmdetect"
"fmt"
)
0 commit comments