Skip to content

Commit

Permalink
Merge branch 'master' of github.com:carbonblack/binee
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Gwinnup committed Nov 16, 2019
2 parents dd4f058 + 737f0b8 commit fd75a0b
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ The goals Binee tries to solve are the following:
solely responsible for obtaining any necessary rights and licenses from
Microsoft.**

## Development and Support

Please feel free to submit github issues or if you want to talk with us directly, come join is in slack

[slack workspace](https://join.slack.com/t/cb-binee/shared_invite/enQtODAwMjM5NzU4MDY4LTE3ZjJkY2FiNmIwMjExOTcwZDAxMjllZjdhODExNDZiZGFkOTJkZTU4YzY0YzVmMTc0N2ExMmYzMzg5MjNhOWU)

## DEF CON 27 Materials

[slides](https://github.com/carbonblack/binee/blob/defcon27/Kyle%20Gwinnup%20-%20Next%20Generation%20Process%20Emulation%20with%20Binee.pdf)
Expand Down Expand Up @@ -50,12 +56,13 @@ Build with the following docker command `docker build -t binee .`
docker run -it -v $PWD:/bineedev/go/src/github.com/carbonblack/binee binee bash
```

Download Golang dependencies and build Binee
Download Golang dependencies and build Binee

```
root@2b0fee41629f:~/go/src/github.com/carbonblack/binee# go get
root@2b0fee41629f:~/go/src/github.com/carbonblack/binee# go build
```
_Note: presence of go.mod file will direct the build utility to collect dependencies upon build, and also allow for the repository to be cloned and developed at any path (regardless of `$GOPATH`) directory_


At this point you should be able to execute binee within the Docker container
and see the usage menu.
Expand Down
10 changes: 10 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module github.com/carbonblack/binee

go 1.13

require (
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e
github.com/kgwinnup/gapstone v0.0.0-20190307034051-9f3ea2fb077c
github.com/unicorn-engine/unicorn v0.0.0-20191025210239-3b17db0d84a2
gopkg.in/yaml.v2 v2.2.5
)
9 changes: 9 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e h1:fY5BOSpyZCqRo5OhCuC+XN+r/bBCmeuuJtjz+bCNIf8=
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
github.com/kgwinnup/gapstone v0.0.0-20190307034051-9f3ea2fb077c h1:nTRM+zLMZTTWfQd/lTL7RJGJYjI+s4O0x5lsHtdaUXs=
github.com/kgwinnup/gapstone v0.0.0-20190307034051-9f3ea2fb077c/go.mod h1:9NN44osf4zQS55nuQvbchUaE5D1WX03Cf9PzU2/XOl4=
github.com/unicorn-engine/unicorn v0.0.0-20191025210239-3b17db0d84a2 h1:zKa6xZVMPu9+l1pRM38PA1cijzy77qYyvq23c1Qcn+4=
github.com/unicorn-engine/unicorn v0.0.0-20191025210239-3b17db0d84a2/go.mod h1:vm0xtY46O4X0t1J6Ob+syPhvL38XAAidXGXmTSlcMZM=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v2 v2.2.5 h1:ymVxjfMaHvXD8RqPRmzHHsB3VvucivSkIAvJFDI5O3c=
gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=

0 comments on commit fd75a0b

Please sign in to comment.