Skip to content
Open
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
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ $ go get github.com/ropnop/kerbrute

With the repository cloned, you can also use the Make file to compile for common architectures:

```
```bash
$ make help
help: Show this help.
windows: Make Windows x86 and x64 Binaries
Expand All @@ -192,6 +192,19 @@ kerbrute_darwin_386 kerbrute_linux_386 kerbrute_windows_386.exe
kerbrute_darwin_amd64 kerbrute_linux_amd64 kerbrute_windows_amd64.exe
```

### Installing on ARM
```bash
go install github.com/ropnop/kerbrute@latest
```

Or with the repository cloned, you can also use `go` to compile for ARM architectures:

```bash
GOARCH=arm64 go build -o kerbrute-arm64 main.go

GOOS=darwin GOARCH=arm64 go build -o kerbrute-arm64-darwin main.go
```

## Credits
Huge shoutout to jcmturner for his pure Go implementation of KRB5: https://github.com/jcmturner/gokrb5 . An amazing project and very well documented. Couldn't have done any of this without that project.

Expand Down