Skip to content
Open
Show file tree
Hide file tree
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
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ Talon is a tool designed to perform automated password guessing attacks while re
More info about the techniques can be found on the following [Blog](https://www.optiv.com/explore-optiv-insights/blog/digging-your-talons-new-take-password-guessing)

## Usage
Download release for your OS from [releases](https://github.com/optiv/Talon/releases)
Compile with go directly using the following command:
```
go install github.com/Tylous/Talon@latest
```

## Contributing
Talon was developed in golang.
Expand Down Expand Up @@ -49,6 +52,8 @@ Usage of ./Talon:
File containing the list of domain controllers to connect to
-K Test against Kerberos only
-L Test against LDAP only
-LockErr float
Repetative lockout errors (default 1)
-Lockout float
Account lockout period in minutes (default 60)
-O string
Expand Down
2 changes: 1 addition & 1 deletion Talon.go
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ func (k KERB) Login() (string, string, error) {
printDebug("Logging into Kerberos with %v\n", k)
cfg, err := config.NewConfigFromString("[libdefaults]\n default_realm = ${REALM}\n dns_lookup_realm = false\n dns_lookup_kdc = true\n [realms]\n " + k.User.Domain + " = {\n kdc =" + k.Host + ":88\n }\n")
if k.Enum == true {
cfg.LibDefaults.PreferredPreauthTypes = []int{int(etypeID.DES3_CBC_SHA1_KD)}
cfg.LibDefaults.PreferredPreauthTypes = []int{int(etypeID.DES_CBC_CRC)}
}
if err != nil {
panic(err.Error())
Expand Down