Skip to content
This repository was archived by the owner on Aug 18, 2023. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,22 @@ 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. 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 && 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
```
Then build it

```
go build Talon.go
Expand Down