-
Notifications
You must be signed in to change notification settings - Fork 35
/
keyring_darwin.go
85 lines (76 loc) · 2.6 KB
/
keyring_darwin.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Copyright 2019, 2020, 2021 The Alpaca Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"errors"
"fmt"
"log"
"os/exec"
"strings"
"github.com/keybase/go-keychain"
"github.com/samuong/go-ntlmssp"
)
type keyring struct {
execCommand func(name string, arg ...string) *exec.Cmd
}
func fromKeyring() *keyring {
return &keyring{execCommand: exec.Command}
}
func (k *keyring) readDefaultForNoMAD(key string) (string, error) {
userDomain := "com.trusourcelabs.NoMAD"
mpDomain := fmt.Sprintf("/Library/Managed Preferences/%s.plist", userDomain)
// Read from managed preferences first
out, err := k.execCommand("defaults", "read", mpDomain, key).Output()
if err != nil {
// Read from user preferences if not in managed preferences
out, err = k.execCommand("defaults", "read", userDomain, key).Output()
}
if err != nil {
return "", err
}
return strings.TrimSpace(string(out)), nil
}
func (k *keyring) readPasswordFromKeychain(userPrincipal string) string {
// https://nomad.menu/help/keychain-usage/
query := keychain.NewItem()
query.SetSecClass(keychain.SecClassGenericPassword)
query.SetAccount(userPrincipal)
query.SetReturnAttributes(true)
query.SetReturnData(true)
results, err := keychain.QueryItem(query)
if err != nil || len(results) != 1 || results[0].Label != "NoMAD" {
return ""
}
return string(results[0].Data)
}
func (k *keyring) getCredentials() (*authenticator, error) {
useKeychain, err := k.readDefaultForNoMAD("UseKeychain")
if err != nil {
return nil, err
} else if useKeychain != "1" {
return nil, errors.New("NoMAD found, but not configured to use keychain")
}
userPrincipal, err := k.readDefaultForNoMAD("UserPrincipal")
if err != nil {
return nil, err
}
substrs := strings.Split(userPrincipal, "@")
if len(substrs) != 2 {
return nil, errors.New("Couldn't retrieve AD domain and username from NoMAD.")
}
user, domain := substrs[0], substrs[1]
hash := ntlmssp.GetNtlmHash(k.readPasswordFromKeychain(userPrincipal))
log.Printf("Found NoMAD credentials for %s\\%s in system keychain", domain, user)
return &authenticator{domain, user, hash}, nil
}