-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAudit-ADTrusts.ps1
410 lines (354 loc) · 12.5 KB
/
Audit-ADTrusts.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
<#
.SYNOPSIS
The script collect and verify Active Directory trusts of the current forest or a specified domain.
.NOTES
Author : Alexandre Augagneur (www.alexwinner.com)
File Name : Audit-ADTrusts.ps1
Date : 06/28/2013
Version : 1.0
.EXAMPLE
.\Audit-ADTrusts.ps1 -FilePath C:\Temp\ADTrusts.csv
.EXAMPLE
.\Audit-ADTrusts.ps1 -DomainName "corpnet.net" -FilePath C:\Temp\ADTrusts.csv
.PARAMETER FilePath
File Path for the csv export of the trusts.
.PARAMETER DomainName
Grab trusts of a specific domain. By default the script is connecting to the current forest.
#>
param (
[Parameter(Mandatory=$true)]
[ValidateScript({Test-Path (Split-Path $_ -Parent) -PathType Container})]
[String] $FilePath,
[Parameter(Mandatory=$false)]
[String] $DomainName
)
#Region Variables
####################################################
# Variables
####################################################
# List of properties of a trust relationship
$ObjTrustProps = @("Source Name","Target Name","Trust Direction","Trust Type","Selective Authentication","SID Filtering",
"SID History","Inbound Status", "Outbound Status","WMIPartnerDCName","WMITrustIsOk","WMITrustStatus")
#EndRegion
#Region Functions
####################################################
# Functions
####################################################
#---------------------------------------------------
# Verify the trust relationship using method
# System.DirectoryServices.ActiveDirectory.Domain.VerifyTrustRelationship)(
#---------------------------------------------------
function Check-TrustRelationship ( $objDomain, $TargetName, $Direction, $Type )
{
Write-Host "`t=> Verifying the trust relationship between '$($objDomain.Name)' and '$($TargetName)'..."
$ObjStatus = New-Object PsObject `
-Property @{
InBound = "N/A"
OutBound = "N/A"
WMIPartnerDCName = "N/A"
WMITrustIsOk = "N/A"
WMITrustStatus = "N/A"
}
try
{
try
{
# WMI Request using the trustmon WMI provider
$WMIStatus = Get-WmiObject -Namespace root\MicrosoftActiveDirectory -Class Microsoft_DomainTrustStatus `
-ComputerName $objDomain.PdcRoleOwner -Filter "TrustedDomain='$TargetName'" -ErrorAction SilentlyContinue -ErrorVariable WMIError
if ( -not($WMIError) )
{
$ObjStatus.WMITrustIsOk = $WMIStatus.TrustIsOk
$ObjStatus.WMITrustStatus = $WMIStatus.TrustStatusString
$ObjStatus.WMIPartnerDCName = $WMIStatus.TrustedDCName
}
}
catch
{
Write-Verbose "Error while verifying trust with domain '$targetName': $($_.Exception.Message)"
}
# Quit the function if the trust is external and
# if the user domain context is not the same of the source domain
if ( $Type -match "External" -and ( $script:CurrentDomain.Name -ne $objDomainDomain) )
{
Return $ObjStatus
}
# Connect to target domain (Use ADSI forest or ADSI domain constructor)
elseif ( $Type -match "Forest" )
{
$Context = new-object System.directoryServices.ActiveDirectory.DirectoryContext('Forest',$TargetName)
$TargetDomain = [System.DirectoryServices.ActiveDirectory.Forest]::GetForest($Context)
}
else
{
$Context = new-object System.directoryServices.ActiveDirectory.DirectoryContext('Domain',$TargetName)
$TargetDomain = [System.DirectoryServices.ActiveDirectory.Domain]::GetDomain($Context)
}
# Test each direction of the trust using the metode VerifyTrustRelationship
switch ($Direction)
{
# Inbound trust
"Inbound"
{
try
{
$objDomain.VerifyTrustRelationship($TargetDomain,$Direction)
$ObjStatus.InBound = "Ok"
}
catch
{
$ObjStatus.InBound = "$($_.Exception.GetBaseException().Message.Trim())"
}
}
# Outbound trust
"Outbound"
{
try
{
$objDomain.VerifyTrustRelationship($TargetDomain,$Direction)
$ObjStatus.OutBound = "Ok"
}
catch
{
$ObjStatus.OutBound = "$($_.Exception.GetBaseException().Message.Trim())"
}
}
# Inbound/Outbound trust
"Bidirectional"
{
try
{
$objDomain.VerifyTrustRelationship($TargetDomain,"Inbound")
$ObjStatus.InBound = "Ok"
}
catch
{
$ObjStatus.InBound = "$($_.Exception.GetBaseException().Message.Trim())"
}
try
{
$objDomain.VerifyTrustRelationship($TargetDomain,"Outbound")
$ObjStatus.OutBound = "Ok"
}
catch
{
$ObjStatus.OutBound = "$($_.Exception.GetBaseException().Message.Trim())"
}
}
}
}
catch
{
$ObjStatus.InBound = "$($_.Exception.GetBaseException().Message.Trim())"
$ObjStatus.OutBound = $ObjStatus.InBound
}
Return $ObjStatus
}
#---------------------------------------------------
# Construct the trust customized object
#---------------------------------------------------
Function Create-objTrust ( $objDomain, $trust )
{
$ObjTrust = New-Object PsObject `
-Property @{
"Source Name" = $trust.SourceName
"Target Name" = $trust.TargetName
"Trust Direction" = $trust.TrustDirection
"Trust Type" = $trust.TrustType
"Selective Authentication" = "No"
"SID Filtering" = "No"
"SID History" = "No"
"AD whenChanged" = $null
}
# Check the selective authentication status
if ( $objDomain.GetSelectiveAuthenticationStatus($ObjTrust."Target Name") )
{
$ObjTrust."Selective Authentication" = "Yes"
}
# Check the sid filtering status
if( $objDomain.GetSidFilteringStatus($ObjTrust."Target Name") )
{
$ObjTrust."SID Filtering" = "Yes"
}
# Retrieve the trust object from AD
$objRootDSE = [System.DirectoryServices.DirectoryEntry] "LDAP://$($trust.SourceName)/rootDSE"
$ADObj = [ADSI] "LDAP://CN=$($trust.TargetName),CN=system,$($objRootDSE.defaultNamingContext)"
# Check if sid history is enabled
if ( $ADObj.trustattributes.ToString() -band 64 )
{
$ObjTrust."SID History" = "Yes"
}
# Retrieve whenChanged attribute of the trust object
$ObjTrust."AD whenChanged" = $ADObj.whenchanged.ToString()
# Call the function Check-TrustRelationship
$ObjStatus = Check-TrustRelationship $ObjDomain $ObjTrust."Target Name" $ObjTrust."Trust Direction" $ObjTrust."Trust Type"
$ObjTrust | Add-Member -type NoteProperty -name "Inbound Status" -value $ObjStatus.Inbound
$ObjTrust | Add-Member -type NoteProperty -name "Outbound Status" -value $ObjStatus.Outbound
$ObjTrust | Add-Member -type NoteProperty -name "WMIPartnerDCName" -value $ObjStatus.WMIPartnerDCName
$ObjTrust | Add-Member -type NoteProperty -name "WMITrustIsOk" -value $ObjStatus.WMITrustIsOk
$ObjTrust | Add-Member -type NoteProperty -name "WMITrustStatus" -value $ObjStatus.WMITrustStatus
Return $ObjTrust
}
#---------------------------------------------------
# Return the NETBIOSName of the specified domain distinguishedName
#---------------------------------------------------
Function Get-NETBiosName ( $dn, $ConfigurationNC )
{
$Searcher = New-Object System.DirectoryServices.DirectorySearcher
$Searcher.SearchScope = "subtree"
$Searcher.PropertiesToLoad.Add("nETBIOSName")| Out-Null
$Searcher.SearchRoot = "LDAP://cn=Partitions,$ConfigurationNC"
$Searcher.Filter = "(nCName=$dn)"
$NetBIOSName = ($Searcher.FindOne()).Properties.Item("nETBIOSName")
Return $NetBIOSName
}
#---------------------------------------------------
# Warn the user if the script is not executed with enterprise admin account
#---------------------------------------------------
Function Is-MemberOf ( $Name )
{
$Groups = @()
([System.Security.Principal.WindowsIdentity]::GetCurrent()).Groups | `
Foreach-Object { $Groups += $_.Translate([System.Security.Principal.NTAccount])}
if ( $Groups -notcontains "$Name\Enterprise Admins" )
{
Write-Warning "The script is not running under an Enterprise Admins context."
}
}
#---------------------------------------------------
# Main function listing trusts from AD and calling the function
# Create-objTrust for all trust relationships found
#---------------------------------------------------
function Get-ADTrusts ($Name, $Type)
{
# Specific treatment for forest or domain
switch ($Type)
{
"Forest"
{
# Retrieve trusts from the current forest
Write-Host "`n* Establishing connection to the current forest: " -NoNewline
try
{
# Connecting to the forest
$Forest = [System.DirectoryServices.ActiveDirectory.Forest]::GetCurrentForest()
Write-Host "SUCCESSFUL" -ForegroundColor Green
# Check if the user account is enterprise admins
$ForestPath = "DC=$($Forest.Name.Replace('.',',DC='))"
$RootDomainNETBIOSName = Get-NETBiosName $ForestPath ([System.DirectoryServices.DirectoryEntry] "LDAP://rootDSE").configurationNamingContext
Is-MemberOf $RootDomainNETBIOSName
}
catch
{
Write-Host "FAILED ($($_.Exception.GetBaseException().Message.Trim()))" -ForegroundColor RED
Exit
}
try
{
Write-Host "`n`tRetrieving list of trusts from the forest '$($Forest.Name)'"
# Retrieve list of forest trusts
$ForestTrusts = $Forest.GetAllTrustRelationships()
Write-Host "`tNumber of trusts found: " -NoNewline
if ( $ForestTrusts.Count -gt 0 )
{
Write-Host "$($ForestTrusts.Count)`n" -ForegroundColor Green
}
else
{
Write-Host "$($ForestTrusts.Count)`n" -ForegroundColor Red
}
for ( $i = 0; $i -lt $ForestTrusts.Count; $i++ )
{
# Construct the list of object trusts to export
$objTrust = Create-objTrust $Forest $ForestTrusts[$i]
$script:Trusts.Add($ObjTrust) | Out-Null
}
}
catch
{
$ObjTrust = New-Object -TypeName PsObject | select $ObjTrustProps
$ObjTrust."Source Name" = $Forest.Name
$ObjTrust."Target Name" = "$($_.Exception.GetBaseException().Message.Trim())"
$script:Trusts.Add($ObjTrust) | Out-Null
}
# Recursive call of function Get-ADTrusts for each child domain
foreach ( $Domain in $Forest.Domains)
{
Get-ADTrusts $Domain.Name "Domain"
}
}
"Domain"
{
$DomainContext = new-object System.directoryServices.ActiveDirectory.DirectoryContext('Domain',$Name)
Write-Host "`n* Establishing connection to domain '$Name': " -NoNewline
try
{
# Connecting to the specified domain
$Domain = [System.DirectoryServices.ActiveDirectory.Domain]::GetDomain($DomainContext)
Write-Host "SUCCESSFUL" -ForegroundColor Green
# Retrieve list of trusts
Write-Host "`n`tRetrieving list of trusts from '$($Domain.Name)'"
$DomainTrusts = $Domain.GetAllTrustRelationships()
try
{
Write-Host "`tNumber of trusts found: " -NoNewline
if ( $DomainTrusts.Count -gt 0 )
{
Write-Host "$($DomainTrusts.Count)`n" -ForegroundColor Green
}
else
{
Write-Host "$($DomainTrusts.Count)`n" -ForegroundColor Red
}
for ( $i = 0; $i -lt $DomainTrusts.Count; $i++ )
{
$objTrust = Create-objTrust $Domain $DomainTrusts[$i]
$script:Trusts.Add($ObjTrust) | Out-Null
}
}
catch
{
$ObjTrust = New-Object -TypeName PsObject | select $ObjTrustProps
$ObjTrust."Source Name" = $Domain.Name
$ObjTrust."Target Name" = "$($_.Exception.GetBaseException().Message.Trim())"
$script:Trusts.Add($ObjTrust) | Out-Null
}
}
catch
{
Write-Host "FAILED ($($_.Exception.GetBaseException().Message.Trim()))" -ForegroundColor RED
#Exit
}
}
}
}
#EndRegion
#Region Main
####################################################
# Main
####################################################
$script:Trusts = new-object System.Collections.ArrayList
$script:CurrentDomain = [System.DirectoryServices.ActiveDirectory.Domain]::GetCurrentDomain()
# Connect to the specified domain or the current forest and list trusts
if ( $DomainName )
{
# Retrieve list of trusts of the specified domain
Get-ADTrusts $DomainName "Domain"
}
else
{
# Retrieve list of trust of the specified forest and child domains
Get-ADTrusts $null "Forest"
}
# Export results to csv file
if ($script:Trusts)
{
$script:Trusts | Export-Csv -Path $FilePath -Delimiter ";" -NoTypeInformation -Force
Write-Host "`nActive Directory trusts inventory exported to " -NoNewline
Write-Host $FilePath -ForegroundColor Green
}
else
{
Write-Host "`nNo trust found." -ForegroundColor Yellow
}
#EndRegion