-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathkeycredential.go
More file actions
583 lines (475 loc) · 16.7 KB
/
Copy pathkeycredential.go
File metadata and controls
583 lines (475 loc) · 16.7 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
package keycred
import (
"bytes"
"crypto/rsa"
"encoding/binary"
"encoding/hex"
"fmt"
"slices"
"strconv"
"strings"
"unicode/utf8"
)
// Version holds the version of a KEYCREDENTIALLINK_BLOB
// (https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-adts/d4b9b239-dbe8-4475-b6f9-745612c64ed0).
type Version uint32
// String returns the string representation a KeyCredentialLink version.
func (v Version) String() string {
switch v {
case Version0:
return "0"
case Version1:
return "1"
case Version2:
return "2"
default:
return fmt.Sprintf("0x%x", uint32(v))
}
}
const (
Version0 Version = 0x0
Version1 Version = 0x00000100
Version2 Version = 0x00000200
)
// KeyCredentialLink holds the KEYCREDENTIALLINK_BLOB structure
// (https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-adts/f3f01e95-6d0c-4fe6-8b43-d585167658fa)
// alongside a DN such that a can correspond to a DB-Binary representation
// (https://learn.microsoft.com/en-us/windows/win32/adschema/s-object-dn-binary).
type KeyCredentialLink struct {
DN string
Version Version
Entries []KeyCredentialLinkEntry
}
// NewKeyCredentialLink returns a version 2 KEYCREDENTIALLINK_BLOB
// (https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-adts/f3f01e95-6d0c-4fe6-8b43-d585167658fa)
// with the minimum required entries as well as user-supplied additional
// entries.
func NewKeyCredentialLink(
key *rsa.PublicKey, dn string, usage uint8, additionalEntries ...KeyCredentialLinkEntry,
) (*KeyCredentialLink, error) {
return newKeyCredentialLink(key, dn, usage, false, additionalEntries...)
}
// NewDERKeyCredentialLink is like NewKeyCredentialLink but with DER formatted key material.
func NewDERKeyCredentialLink(
key *rsa.PublicKey, dn string, usage uint8, additionalEntries ...KeyCredentialLinkEntry,
) (*KeyCredentialLink, error) {
return newKeyCredentialLink(key, dn, usage, true, additionalEntries...)
}
func newKeyCredentialLink(
key *rsa.PublicKey, dn string, usage uint8, derFormat bool, additionalEntries ...KeyCredentialLinkEntry,
) (*KeyCredentialLink, error) {
keyMaterialEntry, err := NewKeyMaterialEntry(key, derFormat, Version2)
if err != nil {
return nil, fmt.Errorf("create KeyMaterialEntry: %w", err)
}
keyIDEntry, err := NewKeyIDEntry(keyMaterialEntry, Version2)
if err != nil {
return nil, fmt.Errorf("create KeyIDEntry: %w", err)
}
kcl := &KeyCredentialLink{
DN: dn,
Version: Version2,
Entries: []KeyCredentialLinkEntry{keyIDEntry},
}
hashedEntries := make([]KeyCredentialLinkEntry, 0, len(additionalEntries)+2)
for _, entry := range additionalEntries {
switch entry.Entry().Identifier {
case TypeKeyMaterial, TypeKeyUsage, TypeKeyID:
return nil, fmt.Errorf(
"entry of type %s cannot be passed as additional entry as it is included by default",
entry.Type())
}
}
hashedEntries = append(hashedEntries, keyMaterialEntry, NewKeyUsageEntry(usage))
hashedEntries = append(hashedEntries, additionalEntries...)
kcl.Entries = append(kcl.Entries, NewKeyHashEntry(hashedEntries))
kcl.Entries = append(kcl.Entries, hashedEntries...)
return kcl, nil
}
// String returns a human readable string summarizing the information in the KeyCredentialLink.
func (kcl *KeyCredentialLink) String() string {
return kcl.string(false)
}
// ColoredString is like String with ANSII color codes for colored terminal
// rendering.
func (kcl *KeyCredentialLink) ColoredString() string {
return kcl.string(true)
}
func (kcl *KeyCredentialLink) string(colors bool) string {
style := styleFunc(colors)
var sb strings.Builder
var properties []string
err := kcl.Validate()
if err != nil {
properties = append(properties, style(fgRed)+"Invalid: "+err.Error()+style())
} else {
properties = append(properties, style(fgGreen)+"Valid"+style())
}
err = kcl.CheckValidatedWriteCompatible()
if err == nil {
properties = append(properties, style(fgBlue)+"Validated Write Compatible"+style())
} else {
properties = append(properties, style(fgYellow)+"Not Validated Write Compatible"+style())
}
if kcl.DN != "" {
properties = append(properties, style(faint)+"DN: "+kcl.DN+style())
}
fmt.Fprintf(&sb, "%sKeyCredentialLink%s v%s (%s):\n",
style(bold), style(), kcl.Version.String(), strings.Join(properties, ", "))
for _, entry := range kcl.Entries {
fmt.Fprintf(&sb, " • ")
_, unparsable := entry.(*UnparsableEntry)
parts := strings.SplitN(entry.String(), ":", 2)
switch {
case unparsable:
fmt.Fprintln(&sb, style(fgYellow)+entry.String()+style())
case len(parts) == 2:
fmt.Fprintln(&sb, style(faint)+parts[0]+":"+style()+parts[1])
default:
fmt.Fprintln(&sb, entry.String())
}
}
return strings.TrimSpace(sb.String())
}
func (kcl *KeyCredentialLink) parseEntry(rawEntry *RawEntry) (KeyCredentialLinkEntry, error) {
switch rawEntry.Identifier {
case TypeKeyID:
return AsKeyIDEntry(rawEntry, kcl.Version)
case TypeKeyHash:
return AsKeyHashEntry(rawEntry, kcl.Version)
case TypeKeyMaterial:
return AsAppropriateKeyMaterialEntry(rawEntry, kcl.Version)
case TypeKeyUsage:
return AsKeyUsageEntry(rawEntry, kcl.Version)
case TypeKeySource:
return AsKeySourceEntry(rawEntry, kcl.Version)
case TypeDeviceId:
return AsDeviceIDEntry(rawEntry, kcl.Version)
case TypeCustomKeyInformation:
return AsCustomKeyInformationEntry(rawEntry, kcl.Version)
case TypeKeyApproximateLastLogonTimeStamp:
return AsKeyApproximateLastLogonTimeStampEntry(rawEntry, kcl.Version)
case TypeKeyCreationTime:
return AsKeyCreationTimeEntry(rawEntry, kcl.Version)
default:
return &UnknownEntry{RawEntry: rawEntry}, nil
}
}
// Get returns the first entry of the given type. If no such entry exists, it
// returns nil. Note that Get does not ensure that the returned value type
// corresponds to the type ID, only that the entry identifier matches the input.
func (kcl *KeyCredentialLink) Get(entryType uint8) KeyCredentialLinkEntry {
for _, entry := range kcl.Entries {
if entry.Entry().Identifier == entryType {
return entry
}
}
return nil
}
// Index returns the index of the first entry that matches entryType and -1 if
// no entry of type entryType is present in the KeyCredentialLink.
func (kcl *KeyCredentialLink) Index(entryType uint8) int {
for i, entry := range kcl.Entries {
if entry.Entry().Identifier == entryType {
return i
}
}
return -1
}
// Bytes returns the binary representation of the KEYCREDENTIALLINK_BLOB
// structure
// (https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-adts/f3f01e95-6d0c-4fe6-8b43-d585167658fa).
func (kcl *KeyCredentialLink) Bytes() []byte {
var buf bytes.Buffer
err := writeBinary(&buf, binary.LittleEndian, kcl.Version)
if err != nil {
panic(err.Error())
}
for _, entry := range kcl.Entries {
err = writeBinary(&buf, binary.LittleEndian, entry.Bytes())
if err != nil {
panic(err.Error())
}
}
return buf.Bytes()
}
// Validate checks if the KeyCredentialLink contains all entries are present
// that *MUST* be included according to the specification
// (https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-adts/a99409ea-4982-4f72-b7ef-8596013a36c7).
// It also checks wether these entries as well as version fields are valid (e.g.
// key hash and key ID are correct).
func (kcl *KeyCredentialLink) Validate() error {
return kcl.validate(false)
}
// ValidateStrict is like Validate but it fails when an unparsable entry is encountered.
func (kcl *KeyCredentialLink) ValidateStrict() error {
return kcl.validate(true)
}
func (kcl *KeyCredentialLink) validate(strict bool) error {
presentEntries := map[uint8]bool{}
var validationErrors []error
if kcl.Version != Version2 {
validationErrors = append(validationErrors, fmt.Errorf("invalid version (%d)", kcl.Version))
}
for i, entry := range kcl.Entries {
if presentEntries[entry.Entry().Identifier] {
validationErrors = append(validationErrors, fmt.Errorf("duplicate entry: %s", entry.Type()))
}
presentEntries[entry.Entry().Identifier] = true
_, ok := entry.(*UnparsableEntry)
if ok {
if strict {
validationErrors = append(validationErrors, fmt.Errorf("unparsable entry (%s)", entry.Type()))
}
continue
}
switch e := entry.(type) {
case *KeyHashEntry:
if !e.Validate(kcl.Entries[i+1:]) {
validationErrors = append(validationErrors, fmt.Errorf("invalid KeyHash at index %d", i))
}
case *KeyIDEntry:
switch km := kcl.Get(TypeKeyMaterial).(type) {
case *KeyMaterialEntry, *JSONWebKeyMaterialEntry, *UnparsableEntry:
if !e.Matches(km) {
validationErrors = append(validationErrors, fmt.Errorf("key ID does not match key material"))
}
case *FIDOKeyMaterialEntry:
validationErrors = append(validationErrors, fmt.Errorf("validation of FIDO key material ID is not supported"))
default:
validationErrors = append(validationErrors, fmt.Errorf("cannot find key material to verify key ID"))
}
}
}
if !presentEntries[TypeKeyID] {
validationErrors = append(validationErrors, fmt.Errorf("KeyID entry not present"))
}
if !presentEntries[TypeKeyMaterial] {
validationErrors = append(validationErrors, fmt.Errorf("KeyMaterial entry not present"))
}
if !presentEntries[TypeKeyUsage] {
validationErrors = append(validationErrors, fmt.Errorf("KeyUsage entry not present"))
}
return joinErrorsWithComma(validationErrors...)
}
// CheckValidatedWriteCompatible checks whether the KeyCredentialLink is
// configured to be written to msDS-KeyCredentialLink attribute with
// RIGHT_DS_WRITE_PROPERTY_EXTENDED permissions instead of
// RIGHT_DS_WRITE_PROPERTY as is the case for computer accounts modifying their
// own KeyCredentialLinks.
//
// In theory, it has to conform to the rules defined in section 3.1.1.5.3.1.1.6
// of the Active Directory Technical Specification (MS-ADTS)
// (https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-adts/f70afbcc-780e-4d91-850c-cfadce5bb15c).
// However, the rules of Microsoft's actual implementation are in direct
// violation of the specs. This method returns true if the actual implementation
// would accept the KeyCredentialLink.
func (kcl *KeyCredentialLink) CheckValidatedWriteCompatible() error {
// it has to be a valid KeyCredentialLink
err := kcl.Validate()
if err != nil {
return fmt.Errorf("validate: %w", err)
}
// KeyUsageEntry is required and it has to be NGC
keyUsage, ok := kcl.Get(TypeKeyUsage).(*KeyUsageEntry)
if !ok {
return fmt.Errorf("unexpected type for KeyUsage entry: %T", kcl.Get(TypeKeyUsage))
}
if !keyUsage.Is(KeyUsageNGC) {
return fmt.Errorf("KeyUsage is %s (%d) instead of NGC", keyUsage.UsageString(), keyUsage.Usage())
}
// CustomKeyInformation is required and its Flags have to be MFANotUsed
customKeyInformation := kcl.Get(TypeCustomKeyInformation)
if customKeyInformation == nil {
return fmt.Errorf("CustomKeyInformation is not present")
}
ckie, ok := customKeyInformation.(*CustomKeyInformationEntry)
if !ok {
return fmt.Errorf("unexpected type for CustomKeyInformationEntry: %T", customKeyInformation)
}
if ckie.Info.Flags != CustomKeyInformationFlagsMFANotUsed {
return fmt.Errorf("custom key information flags are 0x%x instead of 0x%x (MFA Not Used)",
ckie.Info.Flags, CustomKeyInformationFlagsMFANotUsed)
}
// KeySource is optional, but if it is present, it must be AD
keySourceEntryInterface := kcl.Get(TypeKeySource)
if keySourceEntryInterface != nil {
keySource, ok := keySourceEntryInterface.(*KeySourceEntry)
if !ok {
return fmt.Errorf("unexpected type for KeyUsage entry: %T", kcl.Get(TypeKeyUsage))
}
if keySource.Source() != KeySourceAD {
return fmt.Errorf("KeySource is %s instead of AD", keySource.SourceString())
}
}
// ApproximateLastLogonTimeStamp must NOT be present
approximateLastLogonTimeStamp := kcl.Get(TypeKeyApproximateLastLogonTimeStamp)
if approximateLastLogonTimeStamp != nil {
return fmt.Errorf("ApproximateLastLogonTimeStamp is present")
}
// all entries (including optional entries) have to be in a specific order
order := []int{
kcl.Index(TypeKeyID),
kcl.Index(TypeKeyHash),
kcl.Index(TypeKeyMaterial),
kcl.Index(TypeKeyUsage),
}
keySourceIndex := kcl.Index(TypeKeySource)
if keySourceIndex > -1 {
order = append(order, keySourceIndex)
}
deviceIDIndex := kcl.Index(TypeDeviceId)
if deviceIDIndex > -1 {
order = append(order, deviceIDIndex)
}
order = append(order, kcl.Index(TypeCustomKeyInformation))
keyCreationTimeIndex := kcl.Index(TypeKeyCreationTime)
if keyCreationTimeIndex > -1 {
order = append(order, keyCreationTimeIndex)
}
// sanity check
for _, idx := range order {
if idx < 0 {
return fmt.Errorf("cannot check order with non-existing entries")
}
}
if !slices.IsSorted(order) {
return fmt.Errorf("invalid order of entries")
}
return nil
}
// DNWithBinary returns the DN-Binary representation of the KeyCredentialLink
// that is stored in LDAP
// (https://learn.microsoft.com/en-us/windows/win32/adschema/s-object-dn-binary).
func (kcl *KeyCredentialLink) DNWithBinary() string {
hexBytes := strings.ToUpper(hex.EncodeToString(kcl.Bytes()))
return fmt.Sprintf("B:%d:%s:%s", len(hexBytes), hexBytes, kcl.DN)
}
// ParseBlob parses a KeyCredentialLink from raw binary data. Since the binary
// representation does not include the DN, it can be passed as an optional
// parameter.
func ParseBlob(data []byte, dn string) (*KeyCredentialLink, error) {
keyCred := &KeyCredentialLink{
DN: dn,
}
consumer := newConsumer(data, binary.LittleEndian)
keyCred.Version = Version(consumer.Uint32())
for consumer.Remaining() > 0 {
length := consumer.Uint16()
rawEntry := &RawEntry{
Length: length,
Identifier: consumer.Byte(),
Value: consumer.Bytes(int(length)),
}
parsedEntry, err := keyCred.parseEntry(rawEntry)
if err != nil {
parsedEntry = NewUnparsableEntry(rawEntry, err)
}
keyCred.Entries = append(keyCred.Entries, parsedEntry)
}
return keyCred, consumer.Error()
}
// ParseDNWithBinary parses the DN-Binary string representation of a
// KeyCredentialLink as it is stored in LDAP
// (https://learn.microsoft.com/en-us/windows/win32/adschema/s-object-dn-binary).
// If the returned KeyCredentialLink is not modified, it is guaranteed that
// calling '.DNWithBinary()' on it reproduces the input string of
// 'ParseDNWithBinary' exactly.
func ParseDNWithBinary(keyCredentialLinkString string) (*KeyCredentialLink, error) {
parts := strings.Split(keyCredentialLinkString, ":")
if len(parts) != 4 {
return nil, fmt.Errorf("unexpected number of elements in DNWithBinary structure: %d", len(parts))
}
if parts[0] != "B" {
return nil, fmt.Errorf("unexpected type: %q, expected %q", parts[0], "B")
}
length, err := strconv.Atoi(parts[1])
if err != nil {
return nil, fmt.Errorf("parse length %q: %w", parts[1], err)
}
if len(parts[2]) != length {
return nil, fmt.Errorf("data length mismatch: advertized=%d, actual=%d", length, len(parts[2]))
}
data, err := hex.DecodeString(parts[2])
if err != nil {
return nil, fmt.Errorf("decode data section: %w", err)
}
kcl, err := ParseBlob(data, parts[3])
if err != nil {
return nil, fmt.Errorf("parse KeyCredentialLinkBlob: %w", err)
}
if kcl.DNWithBinary() != keyCredentialLinkString {
return nil, fmt.Errorf("original and parsed DNWithBinary do not match")
}
return kcl, nil
}
// FormatKeyCredentials formats a multiple KeyCredentialLinks with optional
// color support for terminal rendering.
func FormatKeyCredentials(kcls []*KeyCredentialLink, includeRaw bool, colored bool) string {
style := styleFunc(colored)
if len(kcls) == 0 {
return ""
}
var (
sb = &strings.Builder{}
padding = len(strconv.Itoa(len(kcls)))
)
for i, kcl := range kcls {
prefix := fmt.Sprintf(fmt.Sprintf("➔ %%%dd:", padding), i+1)
prefixSize := utf8.RuneCountInString(prefix)
var keyCredentialLinkString string
if colored {
keyCredentialLinkString = kcl.ColoredString()
} else {
keyCredentialLinkString = kcl.String()
}
fmt.Fprintf(sb, "%s", prefix)
fmt.Fprintln(sb, " "+strings.ReplaceAll(keyCredentialLinkString, "\n", "\n"+strings.Repeat(" ", prefixSize)))
if includeRaw {
fmt.Fprintln(sb, strings.Repeat(" ", prefixSize), style(faint)+"» Raw: "+kcl.DNWithBinary()+style())
}
if i < len(kcls)-1 {
fmt.Fprintln(sb)
}
}
return strings.TrimSpace(sb.String())
}
func joinErrorsWithComma(errs ...error) error {
n := 0
for _, err := range errs {
if err != nil {
n++
}
}
if n == 0 {
return nil
}
e := &multipleErrs{
errs: make([]error, 0, n),
}
for _, err := range errs {
if err != nil {
e.errs = append(e.errs, err)
}
}
return e
}
//nolint:errname
type multipleErrs struct {
errs []error
}
func (e *multipleErrs) Error() string {
if len(e.errs) == 0 {
return ""
}
var errStr strings.Builder
errStr.WriteString(e.errs[0].Error())
for _, err := range e.errs[1:] {
errStr.WriteString(", ")
errStr.WriteString(err.Error())
}
return errStr.String()
}
func (e *multipleErrs) Unwrap() []error {
return e.errs
}