Skip to content

Commit b31df47

Browse files
committed
Make project go get compliant
1 parent 62e9ae3 commit b31df47

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ This project is a Go implementation of well-known techniques trying to detect if
44

55
Why doing this in Go ? Because there are many C programs already doing this, but none written in pure Go.
66

7+
## Installation
8+
9+
First download the package
10+
```
11+
$ go get github.com/ShellCode33/VM-Detection/vmdetect
12+
```
13+
14+
Then see ![main.go](https://github.com/ShellCode33/VM-Detection/blob/master/main.go) to see how to use it.
15+
716
## GNU/Linux techniques
817

918
- Look for known strings in the DMI table (/dev/mem)

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"VM-Detection/vmdetect"
4+
"github.com/ShellCode33/VM-Detection/vmdetect"
55
"fmt"
66
)
77

0 commit comments

Comments
 (0)