-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathRequest-Certificate.ps1
453 lines (355 loc) · 16.3 KB
/
Request-Certificate.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
<#PSScriptInfo
.VERSION 1.5.0
.GUID eb791b3e-fbbe-4685-8c92-5eb0f05688b6
.AUTHOR Jonas Feller c/o J0F3
.COMPANYNAME jfe.cloud
.COPYRIGHT (c) 2020 Jonas Feller. All rights reserved.
.TAGS PSEdition_Desktop Certificate ActiveDirectory ActiveDirectoryCertificateServices Security
.LICENSEURI
.PROJECTURI https://github.com/J0F3/PowerShell
.ICONURI
.EXTERNALMODULEDEPENDENCIES
.REQUIREDSCRIPTS
.EXTERNALSCRIPTDEPENDENCIES
.RELEASENOTES
Kudos to jbpaux for contributing improvements and fixes on GitHub!
- New switch parameter "AddCNinSAN" to automatically populate SAN with the CN. (PR #15)
- Fixes an issue with naming ot the file when a wildcard (*) certificate is requested. (PR #14)
- Improved outputs when requesting SAN certificate. (PR #13)
- Fixes an issue where the request .inf file was not correctly formated when requesting a SAN certificate. (Kudos to smanross, PR #5)
#>
<#
.SYNOPSIS
Requests a certificate from a Windows CA
.DESCRIPTION
Requests a certificates with the specified subject name from am Windows CA and saves the resulting certificate with the private key in the local computer store.
You must specify at least the CN for the subject name.
With the SAN parameter you can also specify values for subject alternative name to request a SAN certificate.
The CA must support this type of certificate otherwise the request will fail.
With the Export parameter it's also possible to export the requested certificate (with private key) directly to a .pfx file instead of storing it in the local computer store.
You can also use the Import-CSV cmdlet with Request-Certificate.ps1 to request multiple certificates.
To do this, use the Import-CSV cmdlet to create custom objects from a comma-separated value (CSV) file that contains a list of object properties (such as CN, SAN etc. ). Then pass these objects through the pipeline to Request-Certificate.ps1 to request the certificates.
.PARAMETER CN
Specifies the common name for the subject of the certificate(s).
Mostly its the FQDN of a website or service.
e.g. test.jofe.ch
.PARAMETER SAN
Specifies a comma separated list of subject alternate names (FQDNs) for the certificate
The syntax is {tag}={value}.
Valid tags are: email, upn, dns, guid, url, ipaddress, oid
e.g. dns=test.jofe.ch,email=jfeller@jofe.ch
.PARAMETER TemplateName
Specifies the name for the temple of the CA to issue the certificate(s).
The default value is "WebServer".
.PARAMETER KeyLength
Specifies the key length in Bit for the certificate.
Possible Values: 1024,2048,3072,4096,15360
Default Value: 2048
.PARAMETER CAName
Specifies the name of the CA to send the request to in the format FQDN\CAName
If the CAName is not specified, then the directory is queried for a list of enterprise CAs.
If more than one is returned the user is prompted to choose an enterprise CA from the local Active Directory.
.PARAMETER Country
Specifies two letter for the optional country value in the subject of the certificate(s).
e.g. CH
.PARAMETER State
Specifies the optional state value in the subject of the certificate(s).
e.g. Berne
.PARAMETER City
Specifies the optional city value in the subject of the certificate(s).
e.g. Berne
.PARAMETER Organisation
Specifies the optional organisation value in the subject of the certificate(s).
e.g. jofe.ch
.PARAMETER Department
Specifies the optional department value in the subject of the certificate(s).
e.g. IT
.PARAMETER FriendlyName
Specifies the optional friendly name value of the certificate(s).
e.g. "[CA Issued by] My Certificate"
.PARAMETER AddCNinSAN
Specifies the CN will be added to the SAN list if not already provided. This ensures compatibility with
modern browsers.
.PARAMETER Export
Exports the certificate and private key to a pfx file instead of installing it in the local computer store.
By default the certificate will be installed in the local computer store.
.PARAMETER ExportPath
Path to which the pfx file should be saved when -Export is specified.
.PARAMETER Password
Specify the Password (as plain String or SecureString) used on the export.
.INPUTS
System.String
Common name for the subject, SAN , Country, State etc. of the certificate(s) as a string
.OUTPUTS
None. Request-Certificate.ps1 does not generate any output.
.EXAMPLE
C:\PS> .\Request-Certificate.ps1
Description
-----------
This command requests a certificate form the enterprise CA in the local Active Directory.
The user will be asked for the value for the CN of the certificate.
.EXAMPLE
C:\PS> .\Request-Certificate.ps1 -CAName "testsrv.test.ch\Test CA"
Description
-----------
This command requests a certificate form the CA testsrv.test.ch\Test CA.
The user will be asked for the value for the CN of the certificate.
.EXAMPLE
C:\PS> .\Request-Certificate.ps1 -CN "webserver.test.ch" -CAName "testsrv.test.ch\Test CA" -TemplateName "Webservercert"
Description
-----------
This command requests a certificate form the CA testsrv.test.ch\Test CA with the certificate template "Webservercert"
and a CN of webserver.test.ch
The user will be asked for the value for the SAN of the certificate.
.EXAMPLE
Get-Content .\certs.txt | .\Request-Certificate.ps1 -Export
Description
-----------
Gets common names from the file certs.txt and request for each a certificate.
Each certificate will then be saved withe the private key in a .pfx file.
.EXAMPLE
C:\PS> .\Request-Certificate.ps1 -CN "webserver.test.ch" -SAN "DNS=webserver.test.ch,DNS=srvweb.test.local"
Description
-----------
This command requests a certificate with a CN of webserver.test.ch and subject alternative names (SANs)
The SANs of the certificate are the DNS names webserver.test.ch and srvweb.test.local.
.EXAMPLE
C:\PS> Import-Csv .\sancertificates.csv -UseCulture | .\Request-Certificate.ps1 -verbose -Export -CAName "testsrv.test.ch\Test CA"
Description
-----------
This example requests multiple SAN certificates from the "Test CA" CA running on the server "testsrv.test.ch".
The first command creates custom objects from a comma-separated value (CSV) file thats contains a list of object properties. The objects are then passed through the pipeline to Request-Certificate.ps1 to request the certificates form the "J0F3's Issuing CA" CA.
Each certificate will then be saved with the private key in a .pfx file.
The CSV file look something like this:
CN;SAN
test1.test.ch;DNS=test1san1.test.ch,DNS=test1san2.test.ch
test2.test.ch;DNS=test2san1.test.ch,DNS=test2san2.test.ch
test3.test.ch;DNS=test3san1.test.ch,DNS=test3san2.test.ch
.NOTES
Version : 1.4, 01/31/2019
Changes :
Thanks to David Allsopp c/o dra27 on GitHub
- Better default for CAName so it is not needed when only one CA is available.
- ProviderName specified in the request inf file
Version : 1.3, 10/20/2018
Changes :
- Improvements in temp file handling
- Additional parameter to specify the export path for pfx file
- Requesting SAN certs with Extensions instead of Attributes
File Name : Request-Certificate.ps1
Requires : PowerShell V2 or higher
.LINK
© Jonas Feller c/o J0F3, 2019
www.jfe.cloud
#>
[CmdletBinding(DefaultParametersetname="NoExport")]
Param(
[Parameter(Mandatory = $True, ValueFromPipeline = $True, ValueFromPipelineByPropertyName = $True)]
[string]$CN,
[Parameter(Mandatory = $False, ValueFromPipelineByPropertyName = $True)]
[string[]]$SAN,
[Parameter(Mandatory = $False, ValueFromPipelineByPropertyName = $True)]
[String]$TemplateName = "WebServer",
[Parameter(Mandatory = $False, ValueFromPipelineByPropertyName = $True)]
[ValidateSet(1024,2048,3072,4096,15360)]
[int]$keyLength = 2048,
[Parameter(Mandatory = $False, ValueFromPipelineByPropertyName = $True)]
[string]$CAName,
[Parameter(Mandatory = $False, ValueFromPipelineByPropertyName = $True)]
[string]$Country,
[Parameter(Mandatory = $False, ValueFromPipelineByPropertyName = $True)]
[string]$State,
[Parameter(Mandatory = $False, ValueFromPipelineByPropertyName = $True)]
[string]$City,
[Parameter(Mandatory = $False, ValueFromPipelineByPropertyName = $True)]
[string]$Organisation,
[Parameter(Mandatory = $False, ValueFromPipelineByPropertyName = $True)]
[string]$Department,
[Parameter(Mandatory = $False, ValueFromPipelineByPropertyName = $True)]
[string]$FriendlyName = "<None>" ,
[Parameter(Mandatory = $False, ValueFromPipelineByPropertyName = $True)]
[switch]$AddCNinSAN,
[Parameter(Mandatory = $true, ValueFromPipelineByPropertyName = $True, ParameterSetName='Export')]
[switch]$Export,
[Parameter(Mandatory = $false, ValueFromPipelineByPropertyName = $True, ParameterSetName='Export')]
[ValidateScript( {Resolve-Path -Path $_})]
[string]$ExportPath,
[Parameter(Mandatory = $False, ValueFromPipelineByPropertyName = $True, ParameterSetName='Export')]
[ValidateScript( {$_.getType().name -eq "SecureString" -or $_.getType().name -eq "String"})]
$Password
)
BEGIN {
#internal function to do some cleanup
function Remove-ReqTempfiles() {
param(
[String[]]$tempfiles
)
Write-Verbose "Cleanup temp files..."
Remove-Item -Path $tempfiles -Force -ErrorAction SilentlyContinue
}
function Remove-ReqFromStore {
param(
[String]$CN
)
Write-Verbose "Remove pending certificate request form cert store..."
#delete pending request (if a request exists for the CN)
$certstore = new-object system.security.cryptography.x509certificates.x509Store('REQUEST', 'LocalMachine')
$certstore.Open('ReadWrite')
foreach ($certreq in $($certstore.Certificates)) {
if ($certreq.Subject -eq "CN=$CN") {
$certstore.Remove($certreq)
}
}
$certstore.close()
}
}
PROCESS {
#disable debug confirmation messages
if ($PSBoundParameters['Debug']) {$DebugPreference = "Continue"}
Write-Verbose "Generating request inf file"
$file = @"
[NewRequest]
Subject = "CN=$CN,c=$Country, s=$State, l=$City, o=$Organisation, ou=$Department"
MachineKeySet = TRUE
KeyLength = $KeyLength
KeySpec=1
Exportable = TRUE
RequestType = PKCS10
ProviderName = "Microsoft Enhanced Cryptographic Provider v1.0"
FriendlyName = "$FriendlyName"
[RequestAttributes]
CertificateTemplate = "$TemplateName"
"@
#check if SAN certificate is requested
if ($PSBoundParameters.ContainsKey('SAN')) {
#each SAN must be a array element
#if the array has ony one element then split it on the commas.
if (($SAN).count -eq 1) {
$SAN = @($SAN -split ',')
}
}
if ($AddCNinSAN) {
$SAN = @("DNS=$CN") + $SAN #Add CN as first SAN entry
}
# Remove Potential duplicates (if CN was already provided in SAN list)
$SAN = $SAN | Select-Object -Unique
if ($SAN.Count -gt 0) {
Write-Host "Requesting SAN certificate with subject $CN and SAN: $($SAN -join ',')" -ForegroundColor Green
Write-Debug "Parameter values: CN = $CN, TemplateName = $TemplateName, CAName = $CAName, SAN = $($SAN -join ' ')"
Write-Verbose "A value for the SAN is specified. Requesting a SAN certificate."
Write-Debug "Add Extension for SAN to the inf file..."
$file +=
@'
[Extensions]
; If your client operating system is Windows Server 2008, Windows Server 2008 R2, Windows Vista, or Windows 7
; SANs can be included in the Extensions section by using the following text format. Note 2.5.29.17 is the OID for a SAN extension.
2.5.29.17 = "{text}"
'@
foreach ($an in $SAN) {
$file += "_continue_ = `"$($an)&`"`n"
}
}
else {
Write-Host "Requesting certificate with subject $CN" -ForegroundColor Green
Write-Debug "Parameter values: CN = $CN, TemplateName = $TemplateName, CAName = $CAName"
}
Write-Debug "Inf-File: $file"
try {
#create temp files
$inf = [System.IO.Path]::GetTempFileName()
$req = [System.IO.Path]::GetTempFileName()
$filename = $CN -replace "^\*","wildcard"
$cer = Join-Path -Path $env:TEMP -ChildPath "$filename.cer"
$rsp = Join-Path -Path $env:TEMP -ChildPath "$filename.rsp"
Remove-ReqTempfiles -tempfiles $inf, $req, $cer, $rsp
#write the file to debug logs (if debug enabled)
Write-Debug $file
#create new request inf file
Set-Content -Path $inf -Value $file
#show inf file if -verbose is used
Get-Content -Path $inf | Write-Verbose
Write-Verbose "generate .req file with certreq.exe"
Invoke-Expression -Command "certreq -new `"$inf`" `"$req`""
if (!($LastExitCode -eq 0)) {
throw "certreq -new command failed"
}
write-verbose "Sending certificate request to CA"
Write-Debug "CAName = $CAName"
if (!$PSBoundParameters.ContainsKey('CAName')) {
$rootDSE = [System.DirectoryServices.DirectoryEntry]'LDAP://RootDSE'
$searchBase = [System.DirectoryServices.DirectoryEntry]"LDAP://$($rootDSE.configurationNamingContext)"
$CAs = [System.DirectoryServices.DirectorySearcher]::new($searchBase,'objectClass=pKIEnrollmentService').FindAll()
if($CAs.Count -eq 1){
$CAName = "$($CAs[0].Properties.dnshostname)\$($CAs[0].Properties.cn)"
}
else {
$CAName = ""
}
}
if (!$CAName -eq "") {
$CAName = " -config `"$CAName`""
}
Write-Debug "certreq -submit$CAName `"$req`" `"$cer`""
Invoke-Expression -Command "certreq -submit$CAName `"$req`" `"$cer`""
if (!($LastExitCode -eq 0)) {
throw "certreq -submit command failed"
}
Write-Debug "request was successful. Result was saved to `"$cer`""
write-verbose "retrieve and install the certificate"
Invoke-Expression -Command "certreq -accept `"$cer`""
if (!($LastExitCode -eq 0)) {
throw "certreq -accept command failed"
}
if (($LastExitCode -eq 0) -and ($? -eq $true)) {
Write-Host "Certificate request successfully finished!" -ForegroundColor Green
}
else {
throw "Request failed with unknown error. Try with -verbose -debug parameter"
}
if ($export) {
Write-Debug "export parameter is set. => export certificate"
Write-Verbose "exporting certificate and private key"
$cert = Get-Childitem "cert:\LocalMachine\My" | where-object {$_.Thumbprint -eq (New-Object System.Security.Cryptography.X509Certificates.X509Certificate2((Get-Item $cer).FullName, "")).Thumbprint}
Write-Debug "Certificate found in computer store: $cert"
#create a pfx export as a byte array
if($Password) {
Write-Debug "Exporting with password"
$certbytes = $cert.export([System.Security.Cryptography.X509Certificates.X509ContentType]::pfx, $Password)
} else {
Write-Debug "Exporting without password"
$certbytes = $cert.export([System.Security.Cryptography.X509Certificates.X509ContentType]::pfx)
}
#write pfx file
if ($PSBoundParameters.ContainsKey('ExportPath')) {
$pfxPath = Join-Path -Path (Resolve-Path -Path $ExportPath) -ChildPath "$filename.pfx"
}
else {
$pfxPath = ".\$filename.pfx"
}
$certbytes | Set-Content -Encoding Byte -Path $pfxPath -ea Stop
Write-Host "Certificate successfully exported to `"$pfxPath`"!" -ForegroundColor Green
Write-Verbose "deleting exported certificate from computer store"
# delete certificate from computer store
$certstore = new-object system.security.cryptography.x509certificates.x509Store('My', 'LocalMachine')
$certstore.Open('ReadWrite')
$certstore.Remove($cert)
$certstore.close()
}
else {
Write-Debug "export parameter is not set. => script finished"
Write-Host "The certificate with the subject $CN is now installed in the computer store !" -ForegroundColor Green
}
}
catch {
#show error message (non terminating error so that the rest of the pipeline input get processed)
Write-Error $_
}
finally {
#tempfiles and request cleanup
Remove-ReqTempfiles -tempfiles $inf, $req, $cer, $rsp
Remove-ReqFromStore -CN $CN
}
}
END {
Remove-ReqTempfiles -tempfiles $inf, $req, $cer, $rsp
}