-
-
Notifications
You must be signed in to change notification settings - Fork 254
/
DSAccount.cs
559 lines (480 loc) · 18 KB
/
DSAccount.cs
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
namespace DSInternals.Common.Data
{
using DSInternals.Common.Cryptography;
using DSInternals.Common.Properties;
using System;
using System.Collections.Generic;
using System.Security.AccessControl;
using System.Security.Principal;
public class DSAccount
{
public DSAccount(DirectoryObject dsObject, string netBIOSDomainName, DirectorySecretDecryptor pek)
{
// Parameter validation
Validator.AssertNotNull(dsObject, nameof(dsObject));
Validator.AssertNotNull(netBIOSDomainName, nameof(netBIOSDomainName));
if (!dsObject.IsAccount)
{
throw new ArgumentException(Resources.ObjectNotAccountMessage);
}
// Common properties
this.LoadAccountInfo(dsObject, netBIOSDomainName);
// Credential Roaming
this.LoadRoamedCredentials(dsObject);
// Windows Hello for Business
this.LoadKeyCredentials(dsObject);
// Hashes and Supplemental Credentials
this.LoadHashes(dsObject, pek);
}
/// <summary>
/// Gets the distinguished name (DN) for this <see cref="DSAccount"/>.
/// </summary>
public string DistinguishedName
{
get;
private set;
}
/// <summary>
/// Gets the Security ID (SID) of the <see cref="DSAccount"/>.
/// </summary>
public SecurityIdentifier Sid
{
get;
private set;
}
public SecurityIdentifier[] SidHistory
{
get;
private set;
}
/// <summary>
/// Gets the security descriptor of the object.
/// </summary>
public RawSecurityDescriptor SecurityDescriptor
{
get;
private set;
}
/// <summary>
/// Gets the GUID associated with this <see cref="DSAccount"/>.
/// </summary>
/// <value>
/// The unique identifier.
/// </value>
public Guid Guid
{
get;
private set;
}
/// <summary>
/// Gets the display name for this <see cref="DSAccount"/>.
/// </summary>
/// <value>
/// The display name.
/// </value>
public string DisplayName
{
get;
private set;
}
/// <summary>
/// Gets the description of the <see cref="DSAccount"/>.
/// </summary>
/// <value>
/// The description.
/// </value>
public string Description
{
get;
private set;
}
/// <summary>
/// Gets the given name for the <see cref="DSAccount"/>.
/// </summary>
public string GivenName
{
get;
private set;
}
/// <summary>
/// Gets the surname for the user <see cref="DSAccount"/>.
/// </summary>
public string Surname
{
get;
private set;
}
/// <summary>
/// Gets a boolean value indicating whether this <see cref="DSAccount"/> is enabled.
/// </summary>
/// <value>
/// <c>true</c> if enabled; otherwise, <c>false</c>.
/// </value>
public bool Enabled
{
get
{
return !this.UserAccountControl.HasFlag(UserAccountControl.Disabled);
}
}
/// <summary>
/// Gets the flags that control the behavior of the user account.
/// </summary>
/// <value>
/// The value can be zero or a combination of one or more flags.
/// </value>
public UserAccountControl UserAccountControl
{
get;
private set;
}
/// <summary>
/// Gets the encryption types supported by this trust relationship.
/// </summary>
/// <remarks>Implemented on Windows Server 2008 operating system and later.</remarks>
public SupportedEncryptionTypes? SupportedEncryptionTypes
{
get;
private set;
}
public bool SupportsKerberosAESEncryption
{
get
{
if (!this.SupportedEncryptionTypes.HasValue)
{
return false;
}
return this.SupportedEncryptionTypes.Value.HasFlag(Data.SupportedEncryptionTypes.AES128_CTS_HMAC_SHA1_96) ||
this.SupportedEncryptionTypes.Value.HasFlag(Data.SupportedEncryptionTypes.AES256_CTS_HMAC_SHA1_96);
}
}
/// <summary>
/// Gets a boolean value indicating whether this <see cref="DSAccount"/> is deleted.
/// </summary>
/// <value>
/// <c>true</c> if deleted; otherwise, <c>false</c>.
/// </value>
public bool Deleted
{
get;
private set;
}
/// <summary>
/// Gets the Nullable DateTime that specifies the date and time of the last logon for this <see cref="DSAccount"/>.
/// </summary>
/// <remarks>
/// Local, nonreplicated value.
/// </remarks>
public DateTime? LastLogon
{
get;
private set;
}
/// <summary>
/// Gets the Nullable DateTime that specifies the date and time of the last logon for this <see cref="DSAccount"/>.
/// </summary>
/// <remarks>
/// Replicated value
/// </remarks>
public DateTime? LastLogonTimestamp
{
get;
private set;
}
public DateTime? LastLogonDate
{
get
{
// lastLogon is not replicated, lastLogonTimestamp is but it's not as accurate, so if we can't find lastLogon, try using lastLogonTimestamp instead
return this.LastLogon ?? this.LastLogonTimestamp;
}
}
/// <summary>
/// Gets or sets the user principal name (UPN) associated with this <see cref="DSAccount"/>.
/// </summary>
public string UserPrincipalName
{
get;
private set;
}
/// <summary>
/// Gets or sets the SAM account name for this <see cref="DSAccount"/>.
/// </summary>
public string SamAccountName
{
get;
private set;
}
/// <summary>
/// Gets or sets the pre-Windows 2000 logon name of this this <see cref="DSAccount"/>.
/// </summary>
public string LogonName
{
get;
private set;
}
public int PrimaryGroupId
{
get;
private set;
}
/// <summary>
/// Gets the type of the account object.
/// </summary>
public SamAccountType SamAccountType
{
get;
private set;
}
/// <summary>
/// Indicates that a given object has had its ACLs changed to a more secure value
/// by the system because it was a member of one of the administrative groups
/// (directly or transitively).
/// </summary>
public bool AdminCount
{
get;
private set;
}
/// <summary>
/// List of principal names used for mutual authentication with an instance of a service.
/// </summary>
public string[] ServicePrincipalName
{
get;
private set;
}
/// <summary>
/// Gets the account's password in Windows NT operating system one-way format (OWF).
/// </summary>
public byte[] NTHash
{
get;
private set;
}
/// <summary>
/// Gets the account's password in LAN Manager (LM) one-way format (OWF).
/// </summary>
/// <remarks>The LM OWF is used for compatibility with LAN Manager 2.x clients, Windows 95, and Windows 98.</remarks>
public byte[] LMHash
{
get;
private set;
}
/// <summary>
/// Gets password history of the user in Windows NT operating system one-way format (OWF).
/// </summary>
public byte[][] NTHashHistory
{
get;
private set;
}
/// <summary>
/// Gets the password history of the user in LAN Manager (LM) one-way format (OWF).
/// </summary>
/// <value>
/// The lm hash history.
/// </value>
public byte[][] LMHashHistory
{
get;
private set;
}
/// <summary>
/// Gets the stored credentials for use in authenticating.
/// </summary>
public SupplementalCredentials SupplementalCredentials
{
get;
private set;
}
public DateTime? RoamedCredentialsCreated
{
get;
private set;
}
public DateTime? RoamedCredentialsModified
{
get;
private set;
}
public RoamedCredential[] RoamedCredentials
{
get;
private set;
}
/// <summary>
/// Device Registration / Windows Hello for Business Keys
/// </summary>
public KeyCredential[] KeyCredentials
{
get;
private set;
}
protected void LoadAccountInfo(DirectoryObject dsObject, string netBIOSDomainName)
{
// Guid:
this.Guid = dsObject.Guid;
// DN:
this.DistinguishedName = dsObject.DistinguishedName;
// Sid:
this.Sid = dsObject.Sid;
// SidHistory:
dsObject.ReadAttribute(CommonDirectoryAttributes.SIDHistory, out SecurityIdentifier[] sidHistory);
this.SidHistory = sidHistory;
// DisplayName:
dsObject.ReadAttribute(CommonDirectoryAttributes.DisplayName, out string displayName);
this.DisplayName = displayName;
// Description
dsObject.ReadAttribute(CommonDirectoryAttributes.Description, out string description);
this.Description = description;
// GivenName:
dsObject.ReadAttribute(CommonDirectoryAttributes.GivenName, out string givenName);
this.GivenName = givenName;
// Surname:
dsObject.ReadAttribute(CommonDirectoryAttributes.Surname, out string surname);
this.Surname = surname;
// Security Descriptor:
dsObject.ReadAttribute(CommonDirectoryAttributes.SecurityDescriptor, out RawSecurityDescriptor securityDescriptor);
this.SecurityDescriptor = securityDescriptor;
// AdminCount (Although the schema defines it as Int32, it can only have values 0 and 1, so we directly convert it to bool)
dsObject.ReadAttribute(CommonDirectoryAttributes.AdminCount, out bool adminCount);
this.AdminCount = adminCount;
// Service Principal Name(s)
dsObject.ReadAttribute(CommonDirectoryAttributes.ServicePrincipalName, out string[] spn);
this.ServicePrincipalName = spn;
// UAC:
dsObject.ReadAttribute(CommonDirectoryAttributes.UserAccountControl, out int? numericUac);
this.UserAccountControl = (UserAccountControl)numericUac.Value;
// Deleted:
dsObject.ReadAttribute(CommonDirectoryAttributes.IsDeleted, out bool isDeleted);
this.Deleted = isDeleted;
// LastLogon:
dsObject.ReadAttribute(CommonDirectoryAttributes.LastLogon, out DateTime? lastLogon);
this.LastLogon = lastLogon;
dsObject.ReadAttribute(CommonDirectoryAttributes.LastLogonTimestamp, out DateTime? lastLogonTimestamp);
this.LastLogonTimestamp = lastLogonTimestamp;
// UPN:
dsObject.ReadAttribute(CommonDirectoryAttributes.UserPrincipalName, out string upn);
this.UserPrincipalName = upn;
// SamAccountName + LogonName:
dsObject.ReadAttribute(CommonDirectoryAttributes.SAMAccountName, out string samAccountName);
this.SamAccountName = samAccountName;
this.LogonName = new NTAccount(netBIOSDomainName, samAccountName).Value;
// SamAccountType:
dsObject.ReadAttribute(CommonDirectoryAttributes.SamAccountType, out int? numericAccountType);
this.SamAccountType = (SamAccountType)numericAccountType.Value;
// PrimaryGroupId
dsObject.ReadAttribute(CommonDirectoryAttributes.PrimaryGroupId, out int? groupId);
this.PrimaryGroupId = groupId.Value;
// SuportedEncryptionTypes
dsObject.ReadAttribute(CommonDirectoryAttributes.SupportedEncryptionTypes, out int? numericSupportedEncryptionTypes);
// Note: The value is store as int in the DB, but the documentation says that it is an unsigned int
this.SupportedEncryptionTypes = (SupportedEncryptionTypes?) numericSupportedEncryptionTypes;
}
protected void LoadHashes(DirectoryObject dsObject, DirectorySecretDecryptor pek)
{
if (pek == null)
{
// Do not continue if we do not have a decryption key
return;
}
// NTHash:
byte[] encryptedNtHash;
dsObject.ReadAttribute(CommonDirectoryAttributes.NTHash, out encryptedNtHash);
if (encryptedNtHash != null)
{
this.NTHash = pek.DecryptHash(encryptedNtHash, this.Sid.GetRid());
}
// LMHash
byte[] encryptedLmHash;
dsObject.ReadAttribute(CommonDirectoryAttributes.LMHash, out encryptedLmHash);
if (encryptedLmHash != null)
{
this.LMHash = pek.DecryptHash(encryptedLmHash, this.Sid.GetRid());
}
// NTHashHistory:
byte[] encryptedNtHashHistory;
dsObject.ReadAttribute(CommonDirectoryAttributes.NTHashHistory, out encryptedNtHashHistory);
if (encryptedNtHashHistory != null)
{
this.NTHashHistory = pek.DecryptHashHistory(encryptedNtHashHistory, this.Sid.GetRid());
}
// LMHashHistory:
byte[] encryptedLmHashHistory;
dsObject.ReadAttribute(CommonDirectoryAttributes.LMHashHistory, out encryptedLmHashHistory);
if (encryptedLmHashHistory != null)
{
this.LMHashHistory = pek.DecryptHashHistory(encryptedLmHashHistory, this.Sid.GetRid());
}
// SupplementalCredentials:
byte[] encryptedSupplementalCredentials;
dsObject.ReadAttribute(CommonDirectoryAttributes.SupplementalCredentials, out encryptedSupplementalCredentials);
if (encryptedSupplementalCredentials != null)
{
byte[] binarySupplementalCredentials = pek.DecryptSecret(encryptedSupplementalCredentials);
this.SupplementalCredentials = new SupplementalCredentials(binarySupplementalCredentials);
}
}
/// <summary>
/// Loads credential roaming objects and timestamps.
/// </summary>
protected void LoadRoamedCredentials(DirectoryObject dsObject)
{
// These attributes have been added in Windows Server 2008, so they might not be present on older DCs.
byte[] roamingTimeStamp;
dsObject.ReadAttribute(CommonDirectoryAttributes.PKIRoamingTimeStamp, out roamingTimeStamp);
if (roamingTimeStamp == null)
{
// This account does not have roamed credentials, so we skip their processing
return;
}
// The 16B of the value consist of two 8B actual time stamps.
long createdTimeStamp = BitConverter.ToInt64(roamingTimeStamp, 0);
long modifiedTimeStamp = BitConverter.ToInt64(roamingTimeStamp, sizeof(long));
this.RoamedCredentialsCreated = DateTime.FromFileTime(createdTimeStamp);
this.RoamedCredentialsModified = DateTime.FromFileTime(modifiedTimeStamp);
byte[][] masterKeyBlobs;
dsObject.ReadLinkedValues(CommonDirectoryAttributes.PKIDPAPIMasterKeys, out masterKeyBlobs);
byte[][] credentialBlobs;
dsObject.ReadLinkedValues(CommonDirectoryAttributes.PKIAccountCredentials, out credentialBlobs);
// Parse the blobs and combine them into one array.
var credentials = new List<RoamedCredential>();
if (masterKeyBlobs != null)
{
foreach (var blob in masterKeyBlobs)
{
credentials.Add(new RoamedCredential(blob, this.SamAccountName, this.Sid));
}
}
if(credentialBlobs != null)
{
foreach (var blob in credentialBlobs)
{
credentials.Add(new RoamedCredential(blob, this.SamAccountName, this.Sid));
}
}
this.RoamedCredentials = credentials.ToArray();
}
/// <summary>
/// Loads key credentials.
/// </summary>
protected void LoadKeyCredentials(DirectoryObject dsObject)
{
// This attribute has been added in Windows Server 2016, so it might not be present on older DCs.
byte[][] keyCredentialBlobs;
dsObject.ReadLinkedValues(CommonDirectoryAttributes.KeyCredentialLink, out keyCredentialBlobs);
// Parse the blobs and combine them into one array.
var credentials = new List<KeyCredential>();
if (keyCredentialBlobs != null)
{
foreach (var blob in keyCredentialBlobs)
{
credentials.Add(new KeyCredential(blob, this.DistinguishedName));
}
}
this.KeyCredentials = credentials.ToArray();
}
}
}