From 8176f0b1cb2d94805666cc114d12350732af1657 Mon Sep 17 00:00:00 2001 From: jdelta1 <49237786+jdelta1@users.noreply.github.com> Date: Sun, 30 May 2021 19:45:56 -0400 Subject: [PATCH 1/2] Update README.md Update install guide, make it easier / automatic. --- README.md | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 1de73d6..56daf40 100644 --- a/README.md +++ b/README.md @@ -19,18 +19,9 @@ Download release for your OS from [releases](https://github.com/optiv/Talon/rele ## Contributing Talon was developed in golang. -The first step as always is to clone the repo. Before you compile Talon you'll need to install the dependencies. To install them, run following commands: +The first step as always is to clone the repo. Install dependencies, and build it ``` -go get github.com/fatih/color -go get gopkg.in/jcmturner/gokrb5.v7/client -go get gopkg.in/jcmturner/gokrb5.v7/config -go get gopkg.in/jcmturner/gokrb5.v7/iana/etypeID -go get gopkg.in/ldap.v2 -``` -Then build it - -``` -go build Talon.go +go get && go build Talon.go ``` ## Usage From 38ed2af3475994d2b97e593c6564471a7dd2d411 Mon Sep 17 00:00:00 2001 From: jdelta1 <49237786+jdelta1@users.noreply.github.com> Date: Sun, 30 May 2021 20:17:12 -0400 Subject: [PATCH 2/2] Update README.md --- README.md | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 56daf40..78f9d8f 100644 --- a/README.md +++ b/README.md @@ -17,12 +17,26 @@ More info about the techniques can be found on the following [Blog](https://www. Download release for your OS from [releases](https://github.com/optiv/Talon/releases) ## Contributing -Talon was developed in golang. +Talon was developed in go. -The first step as always is to clone the repo. Install dependencies, and build it +The first step as always is to clone the repo. +Install dependencies, and build it: ``` go get && go build Talon.go ``` +### Manual Install +Before you compile Talon you'll need to install the dependencies. To install them, run following commands: +``` +go get github.com/fatih/color +go get gopkg.in/jcmturner/gokrb5.v7/client +go get gopkg.in/jcmturner/gokrb5.v7/config +go get gopkg.in/jcmturner/gokrb5.v7/iana/etypeID +go get gopkg.in/ldap.v2 +``` + +``` +go build Talon.go +``` ## Usage