forked from RamblingCookieMonster/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Get-ADMigratedSourceObject.ps1
461 lines (392 loc) · 18 KB
/
Get-ADMigratedSourceObject.ps1
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
function Get-ADMigratedSourceObject {
<#
.SYNOPSIS
Find the source account(s) from a migrated target account
.DESCRIPTION
Find the source account(s) from a migrated target account.
If you used ADMT or another migration tool to migrate accounts,
this function will help you map out the source accounts they came from.
Basic workflow:
Search Path by SamAccountName
Extract SIDHistory
Searches SourcePath, or enumeration of all trusted domains for the SID
.FUNCTIONALITY
Active Directory
.PARAMETER samAccountName
samAccountName from the target domain - We find any source accounts tied to this.
.PARAMETER Path
LDAP Path for the target domain to search: e.g. contoso.com, DomainController1
LDAP:// is prepended when omitted
.PARAMETER SourcePath
LDAP Path for the source domain to search: e.g. contoso.com, DomainController1
If none is specified, we enumerate trusts of the logged on user's domain, search all of them
LDAP:// is prepended when omitted
.PARAMETER Property
Specific properties to return from the source
.PARAMETER SourceCredential
If specified, Credential to use for querying the SourcePath
.PARAMETER Credential
If Specified, Credential to use for querying the Path
.PARAMETER As
Change the output object type. We default to PSObject.
SearchResult = Results directly from DirectorySearcher
DirectoryEntry = Invoke GetDirectoryEntry against each DirectorySearcher object returned
PSObject (Default) = Create a PSObject with expected properties and types
.PARAMETER Simple
If specified, show a simplified output with the following properties:
SamAccountName = The target account you queried for
SourceSamAccountName = A source account the target is tied to
ObjectClass = Last element in objectClass (e.g. group, user)
TrustedDomain = The source domain name.
.EXAMPLE
Get-ADMigratedSourceObject -samAccountName jdoe -SourcePath contoso.com -Path contoso.org
# Find an AD object in the target contoso.org with samaccountname jdoe. Use this SIDHistory to find matching source accounts in the source contoso.com
.EXAMPLE
Get-ADMigratedSourceObject -samAccountName jkelly2
# Search the current domain for jkelly2; if they have a SIDHistory, search all trusted domains for a matching object
.EXAMPLE
Get-ADMigratedSourceObject -samaccountname j* -simple
# Search the current domain for any account starting with j, map out source accounts for any previously migrated objects, only show account names, type, and domain.
#>
[cmdletbinding()]
param(
[Parameter( Position=0,
Mandatory = $true,
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true,
ParameterSetName='SAM')]
[string[]]$samAccountName = "*",
[string]$Path = $env:USERDOMAIN,
[string]$SourcePath,
[string]$ObjectCategory,
[validateset("PSObject","DirectoryEntry","SearchResult")]
[string]$As = "PSObject",
[switch]$Simple,
[string[]]$Property = $Null,
[System.Management.Automation.PSCredential]$Credential,
[System.Management.Automation.PSCredential]$SourceCredential
)
Begin
{
#Region DEPENDENCIES
function Get-ADSIObject {
[cmdletbinding(DefaultParameterSetName='SAM')]
Param(
[Parameter( Position=0,
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true,
ParameterSetName='SAM')]
[string[]]$samAccountName = "*",
[Parameter( Position=1,
ParameterSetName='SAM')]
[string[]]$ObjectCategory = "*",
[Parameter( ParameterSetName='Query',
Mandatory = $true )]
[string]$Query = $null,
[string]$Path = $Null,
[string[]]$Property = $Null,
[int]$Limit,
[string]$SearchRoot,
[System.Management.Automation.PSCredential]$Credential,
[validateset("PSObject","DirectoryEntry","SearchResult")]
[string]$As = "PSObject"
)
Begin
{
#Define parameters for creating the object
$Params = @{
TypeName = "System.DirectoryServices.DirectoryEntry"
ErrorAction = "Stop"
}
#If we have an LDAP path, add it in.
if($Path){
if($Path -notlike "^LDAP")
{
$Path = "LDAP://$Path"
}
$Params.ArgumentList = @($Path)
#if we have a credential, add it in
if($Credential)
{
$Params.ArgumentList += $Credential.UserName
$Params.ArgumentList += $Credential.GetNetworkCredential().Password
}
}
elseif($Credential)
{
Throw "Using the Credential parameter requires a Path parameter"
}
#Create the domain entry for search root
Try
{
Write-Verbose "Bound parameters:`n$($PSBoundParameters | Format-List | Out-String )`nCreating DirectoryEntry with parameters:`n$($Params | Out-String)"
$DomainEntry = New-Object @Params
}
Catch
{
Throw "Could not establish DirectoryEntry: $_"
}
$DomainName = $DomainEntry.name
#Set up the searcher
$Searcher = New-Object -TypeName System.DirectoryServices.DirectorySearcher
$Searcher.PageSize = 1000
$Searcher.SearchRoot = $DomainEntry
if($Limit)
{
$Searcher.SizeLimit = $limit
}
if($Property)
{
foreach($Prop in $Property)
{
$Searcher.PropertiesToLoad.Add($Prop) | Out-Null
}
}
if($SearchRoot)
{
if($SearchRoot -notlike "^LDAP")
{
$SearchRoot = "LDAP://$SearchRoot"
}
$Searcher.SearchRoot = [adsi]$SearchRoot
}
#Define a function to get ADSI results from a specific query
Function Get-ADSIResult
{
[cmdletbinding()]
param(
[string[]]$Property = $Null,
[string]$Query,
[string]$As,
$Searcher
)
#Invoke the query
$Results = $null
$Searcher.Filter = $Query
$Results = $Searcher.FindAll()
#If SearchResult, just spit out the results.
if($As -eq "SearchResult")
{
$Results
}
#If DirectoryEntry, invoke GetDirectoryEntry
elseif($As -eq "DirectoryEntry")
{
$Results | ForEach-Object { $_.GetDirectoryEntry() }
}
#Otherwise, get properties from the object
else
{
$Results | ForEach-Object {
#Get the keys. They aren't an array, so split them up, remove empty, and trim just in case I screwed something up...
$object = $_
#cast to array of strings or else PS2 breaks when we select down the line
[string[]]$properties = ($object.properties.PropertyNames) -split "`r|`n" | Where-Object { $_ } | ForEach-Object { $_.Trim() }
#Filter properties if desired
if($Property)
{
$properties = $properties | Where-Object {$Property -Contains $_}
}
#Build up an object to output. Loop through each property, extract from ResultPropertyValueCollection
#Create the object, PS2 compatibility. can't just pipe to select, props need to exist
$hash = @{}
foreach($prop in $properties)
{
$hash.$prop = $null
}
$Temp = New-Object -TypeName PSObject -Property $hash | Select -Property $properties
foreach($Prop in $properties)
{
Try
{
$Temp.$Prop = foreach($item in $object.properties.$prop)
{
$item
}
}
Catch
{
Write-Warning "Could not get property '$Prop': $_"
}
}
$Temp
}
}
}
}
Process
{
#Set up the query as defined, or look for a samaccountname. Probably a cleaner way to do this...
if($PsCmdlet.ParameterSetName -eq 'Query'){
Write-Verbose "Working on Query '$Query'"
Get-ADSIResult -Searcher $Searcher -Property $Property -Query $Query -As $As
}
else
{
foreach($AccountName in $samAccountName)
{
#Build up the LDAP query...
$QueryArray = @( "(samAccountName=$AccountName)" )
if($ObjectCategory)
{
[string]$TempString = ( $ObjectCategory | ForEach-Object {"(objectCategory=$_)"} ) -join ""
$QueryArray += "(|$TempString)"
}
$Query = "(&$($QueryArray -join ''))"
Write-Verbose "Working on built Query '$Query'"
Get-ADSIResult -Searcher $Searcher -Property $Property -Query $Query -As $As
}
}
}
End
{
$Searcher = $null
$DomainEntry = $null
}
}
#endregion DEPENDENCIES
if(-not $SourcePath)
{
$DomainsToQueryObjects = Get-ADSIObject -Query "(ObjectClass=trustedDomain)" -Property trustpartner, securityIdentifier -as DirectoryEntry
$DomainsToQuery = $DomainsToQueryObjects | Select -ExpandProperty trustPartner
$DomainsHash = @{}
foreach($Domain in $DomainsToQueryObjects)
{
Try
{
$TrustPartner = $null
$TrustPartner = $Domain.trustPartner.value
$SID = $null
$SID = (New-Object System.Security.Principal.SecurityIdentifier($Domain.securityIdentifier[0],0) -ErrorAction Stop).Value
$DomainsHash.Add($TrustPartner, $SID)
}
Catch
{
Write-Error "Could not find SID for trustPartner $TrustPartner"
}
}
Write-Verbose "Found trusts: $DomainsToQuery"
}
else
{
$DomainsToQuery = @($SourcePath)
}
#Source search, Output params
$OldParams = @{}
if($SourceCredential)
{
$OldParams.Credential = $SourceCredential
}
if($as)
{
$OldParams.As = $As
}
if($Property)
{
$OldParams.Property = $Property
if($Simple)
{
$OldParams.Property += "SamAccountName"
$OldParams.Property += "ObjectClass"
}
}
#Target search params
$NewParams = @{}
if($Credential)
{
$NewParams.add('Credential', $Credential)
}
if($ObjectCategory)
{
$NewParams.add('ObjectCategory',$ObjectCategory)
}
}
Process
{
foreach($account in $samAccountName)
{
#Get the legacy object as a directory entry.
Try
{
$newADSIObject = $null
$newADSIObject = @( Get-ADSIObject -samaccountname $account -Path $Path -Property samaccountname, objectSID, SIDHistory -as DirectoryEntry @NewParams -ErrorAction Stop )
if(-not $newADSIObject)
{
Write-Warning "No target object found for account $account on path $Path"
continue
}
}
Catch
{
Write-Error "Error obtaining account $account on path $Path`: $_"
continue
}
foreach($ADSIObject in $newADSIObject)
{
#Convert byte array to string sid
$OldSID = $Null
$AllSids = @(
foreach($Sid in @($ADSIObject.SIDHistory))
{
Try
{
$OldSID = (New-Object System.Security.Principal.SecurityIdentifier($Sid,0)).Value
Write-Verbose "Found SID '$OldSid'"
$OldSID
}
Catch
{
Write-Error "Error obtaining SID from account $account on path $Path with sid $($sid | out-string)"
Continue
}
}
)
#Get the new object with matching SID
foreach($sid in $AllSids)
{
foreach($Domain in $DomainsToQuery)
{
if($sid -match $DomainsHash.$Domain)
{
Write-Verbose "Checking '$Domain' for '$sid':"
Try
{
$Raw = Get-ADSIObject -Path $Domain -Query "(objectSID=$sid)" @OldParams -ErrorAction stop
if($Raw)
{
if($Simple)
{
$Props = @(
@{ label = "SamAccountName"; expression = {$ADSIObject.sAMAccountName.Value} },
@{ label = "SourceSamAccountName"; expression = {$Raw.samaccountname} },
@{ label = "ObjectClass"; expression = {$Raw.ObjectClass[-1]}}
@{ label = "TrustedDomain"; expression = {$Domain} }
)
if($Property)
{
$Props += @($Property | ?{$_ -ne 'SamAccountName'})
}
$Raw | Select -property $Props
}
else
{
$Raw
}
}
}
Catch
{
Write-Error "Error obtaining sid $sid on path $SourcePath`: $_"
Continue
}
}
else
{
Write-Verbose "Skipping domain $Domain, sid '$sid' does not match domain sid '$($DomainsHash.$domain)'"
}
}
}
}
}
}
}