-
Notifications
You must be signed in to change notification settings - Fork 67
/
CertificateDSc.Common.psm1
368 lines (308 loc) · 10.2 KB
/
CertificateDSc.Common.psm1
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
# Import the Networking Resource Helper Module
Import-Module -Name (Join-Path -Path (Split-Path -Path $PSScriptRoot -Parent) `
-ChildPath (Join-Path -Path 'CertificateDsc.ResourceHelper' `
-ChildPath 'CertificateDsc.ResourceHelper.psm1'))
# Import Localization Strings
$localizedData = Get-LocalizedData `
-ResourceName 'CertificateDsc.Common' `
-ResourcePath $PSScriptRoot
<#
.SYNOPSIS
Validates the existence of a file at a specific path.
.PARAMETER Path
The location of the file. Supports any path that Test-Path supports.
.PARAMETER Quiet
Returns $false if the file does not exist. By default this function throws an exception if the
file is missing.
.EXAMPLE
Test-CertificatePath -Path '\\server\share\Certificates\mycert.cer'
.EXAMPLE
Test-CertificatePath -Path 'C:\certs\my_missing.cer' -Quiet
.EXAMPLE
'D:\CertRepo\a_cert.cer' | Test-CertificatePath
.EXAMPLE
Get-ChildItem -Path D:\CertRepo\*.cer |
Test-CertificatePath
#>
function Test-CertificatePath
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true,
ValueFromPipeline)]
[String[]]
$Path,
[Parameter()]
[Switch]
$Quiet
)
Process
{
foreach ($pathNode in $Path)
{
if ($pathNode | Test-Path -PathType Leaf)
{
$true
}
elseif ($Quiet)
{
$false
}
else
{
New-InvalidArgumentError `
-ErrorId 'CannotFindRootedPath' `
-ErrorMessage ($LocalizedData.FileNotFoundError -f $pathNode)
}
}
}
} # end function Test-CertificatePath
<#
.SYNOPSIS
Validates whether a given certificate is valid based on the hash algoritms available on the
system.
.PARAMETER Thumbprint
One or more thumbprints to Test.
.PARAMETER Quiet
Returns $false if the thumbprint is not valid. By default this function throws an exception if
validation fails.
.EXAMPLE
Test-Thumbprint fd94e3a5a7991cb6ed3cd5dd01045edf7e2284de
.EXAMPLE
Test-Thumbprint `
-Thumbprint fd94e3a5a7991cb6ed3cd5dd01045edf7e2284de,0000e3a5a7991cb6ed3cd5dd01045edf7e220000 `
-Quiet
.EXAMPLE
Get-ChildItem -Path Cert:\LocalMachine -Recurse |
Where-Object -FilterScript { $_.Thumbprint } |
Select-Object -Expression Thumbprint |
Test-Thumbprint -Verbose
#>
function Test-Thumbprint
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true,
ValueFromPipeline)]
[ValidateNotNullOrEmpty()]
[String[]]
$Thumbprint,
[Parameter()]
[Switch]
$Quiet
)
Begin
{
# Get a list of Hash Providers
$hashProviders = [System.AppDomain]::CurrentDomain.GetAssemblies().GetTypes() |
Where-Object -FilterScript {
$_.BaseType.BaseType -eq [System.Security.Cryptography.HashAlgorithm] -and
($_.Name -cmatch 'Managed$' -or $_.Name -cmatch 'Provider$')
}
# Get a list of all Valid Hash types and lengths into an array
$validHashes = @()
foreach ($hashProvider in $hashProviders)
{
$bitSize = ( New-Object -TypeName $hashProvider ).HashSize
$validHash = New-Object `
-TypeName PSObject `
-Property @{
Hash = $hashProvider.BaseType.Name
BitSize = $bitSize
HexLength = $bitSize / 4
}
$validHashes += @( $validHash )
}
}
Process
{
foreach ($hash in $Thumbprint)
{
$isValid = $false
foreach ($algorithm in $validHashes)
{
if ($hash -cmatch "^[a-fA-F0-9]{$($algorithm.HexLength)}$")
{
Write-Verbose -Message ($LocalizedData.InvalidHashError `
-f $hash,$algorithm.Hash)
$isValid = $true
}
}
if ($Quiet -or $isValid)
{
$isValid
}
else
{
New-InvalidArgumentError `
-ErrorId 'CannotFindRootedPath' `
-ErrorMessage ($LocalizedData.InvalidHashError -f $hash)
}
}
}
} # end function Test-Thumbprint
<#
.SYNOPSIS
Locates one or more certificates using the passed certificate selector parameters.
If more than one certificate is found matching the selector criteria, they will be
returned in order of descending expiration date.
.PARAMETER Thumbprint
The thumbprint of the certificate to find.
.PARAMETER FriendlyName
The friendly name of the certificate to find.
.PARAMETER Subject
The subject of the certificate to find.
.PARAMETER DNSName
The subject alternative name of the certificate to export must contain these values.
.PARAMETER Issuer
The issuer of the certiicate to find.
.PARAMETER KeyUsage
The key usage of the certificate to find must contain these values.
.PARAMETER EnhancedKeyUsage
The enhanced key usage of the certificate to find must contain these values.
.PARAMETER Store
The Windows Certificate Store Name to search for the certificate in.
Defaults to 'My'.
.PARAMETER AllowExpired
Allows expired certificates to be returned.
#>
function Find-Certificate
{
[CmdletBinding()]
[OutputType([System.Security.Cryptography.X509Certificates.X509Certificate2[]])]
param
(
[String]
$Thumbprint,
[String]
$FriendlyName,
[String]
$Subject,
[String[]]
$DNSName,
[String]
$Issuer,
[String[]]
$KeyUsage,
[String[]]
$EnhancedKeyUsage,
[String]
$Store = 'My',
[Boolean]
$AllowExpired = $false
)
$certPath = Join-Path -Path 'Cert:\LocalMachine' -ChildPath $Store
if (-not (Test-Path -Path $certPath))
{
# The Certificte Path is not valid
New-InvalidArgumentError `
-ErrorId 'CannotFindCertificatePath' `
-ErrorMessage ($LocalizedData.CertificatePathError -f $certPath)
} # if
# Assemble the filter to use to select the certificate
$certFilters = @()
if ($PSBoundParameters.ContainsKey('Thumbprint'))
{
$certFilters += @('($_.Thumbprint -eq $Thumbprint)')
} # if
if ($PSBoundParameters.ContainsKey('FriendlyName'))
{
$certFilters += @('($_.FriendlyName -eq $FriendlyName)')
} # if
if ($PSBoundParameters.ContainsKey('Subject'))
{
$certFilters += @('($_.Subject -eq $Subject)')
} # if
if ($PSBoundParameters.ContainsKey('Issuer'))
{
$certFilters += @('($_.Issuer -eq $Issuer)')
} # if
if (-not $AllowExpired)
{
$certFilters += @('(((Get-Date) -le $_.NotAfter) -and ((Get-Date) -ge $_.NotBefore))')
} # if
if ($PSBoundParameters.ContainsKey('DNSName'))
{
$certFilters += @('(@(Compare-Object -ReferenceObject $_.DNSNameList.Unicode -DifferenceObject $DNSName | Where-Object -Property SideIndicator -eq "=>").Count -eq 0)')
} # if
if ($PSBoundParameters.ContainsKey('KeyUsage'))
{
$certFilters += @('(@(Compare-Object -ReferenceObject ($_.Extensions.KeyUsages -split ", ") -DifferenceObject $KeyUsage | Where-Object -Property SideIndicator -eq "=>").Count -eq 0)')
} # if
if ($PSBoundParameters.ContainsKey('EnhancedKeyUsage'))
{
$certFilters += @('(@(Compare-Object -ReferenceObject ($_.EnhancedKeyUsageList.FriendlyName) -DifferenceObject $EnhancedKeyUsage | Where-Object -Property SideIndicator -eq "=>").Count -eq 0)')
} # if
# Join all the filters together
$certFilterScript = '(' + ($certFilters -join ' -and ') + ')'
Write-Verbose -Message ($LocalizedData.SearchingForCertificateUsingFilters `
-f $store,$certFilterScript)
$certs = Get-ChildItem -Path $certPath |
Where-Object -FilterScript ([ScriptBlock]::Create($certFilterScript))
# Sort the certificates
if ($certs.count -gt 1)
{
$certs = $certs | Sort-Object -Descending -Property 'NotAfter'
} # if
return $certs
} # end function Find-Certificate
<#
.SYNOPSIS
Throws an InvalidOperation custom exception.
.PARAMETER ErrorId
The error Id of the exception.
.PARAMETER ErrorMessage
The error message text to set in the exception.
#>
function New-InvalidOperationError
{
[CmdletBinding()]
param
(
[Parameter(Mandatory)]
[ValidateNotNullOrEmpty()]
[System.String]
$ErrorId,
[Parameter(Mandatory)]
[ValidateNotNullOrEmpty()]
[System.String]
$ErrorMessage
)
$exception = New-Object -TypeName System.InvalidOperationException `
-ArgumentList $ErrorMessage
$errorCategory = [System.Management.Automation.ErrorCategory]::InvalidOperation
$errorRecord = New-Object -TypeName System.Management.Automation.ErrorRecord `
-ArgumentList $exception, $ErrorId, $errorCategory, $null
throw $errorRecord
} # end function New-InvalidOperationError
<#
.SYNOPSIS
Throws an InvalidArgument custom exception.
.PARAMETER ErrorId
The error Id of the exception.
.PARAMETER ErrorMessage
The error message text to set in the exception.
#>
function New-InvalidArgumentError
{
[CmdletBinding()]
param
(
[Parameter(Mandatory)]
[ValidateNotNullOrEmpty()]
[System.String]
$ErrorId,
[Parameter(Mandatory)]
[ValidateNotNullOrEmpty()]
[System.String]
$ErrorMessage
)
$exception = New-Object -TypeName System.ArgumentException `
-ArgumentList $ErrorMessage
$errorCategory = [System.Management.Automation.ErrorCategory]::InvalidArgument
$errorRecord = New-Object -TypeName System.Management.Automation.ErrorRecord `
-ArgumentList $exception, $ErrorId, $errorCategory, $null
throw $errorRecord
} # end function New-InvalidArgumentError