|
| 1 | +4.0.0 |
| 2 | + |
| 3 | +* As of this version of the extension, SANs will be handled through the ODKG Enrollment page in Command and will no longer use the SAN Entry Parameter. This version, we are removing all support for the SAN Entry Parameter. If you are still using the SAN Entry Parameter, you will need to remove it from your store types and re-run inventory to remove it from your database. |
| 4 | +* Adding JEA Support for local PowerShell execution. This will allow for more secure execution of the extension when running in a local PowerShell Runspace. To utilize this feature, you will need to create a JEA endpoint on the target server and specify the endpoint name as a new parameter in the specific Cert Store definition. Refer to the README for more details. |
| 5 | +* .NET6 assemblies are no longer supported. |
| 6 | +* Fixed a problem when passing a bad CSP, the job was reporting successful, but did not actually add/bind the certificate. |
| 7 | +* Enhanced Crypto Service Provider (CSP) discovery and validation to work correctly on localized Windows installations. Customers running Traditional Chinese Windows (zh-TW / CP950) reported that certificate add jobs were failing with "Crypto Service Provider ... is either invalid or not found on this system." even when the requested CSP was installed. The root cause was that `Get-CryptoProviders` parsed `certutil -csplist` output and matched on the literal English label "Provider Name:", which is translated on non en-US Windows, causing the enumerated provider list to come back empty and every CSP name to fail validation. Provider enumeration now reads from the culture-invariant registry hive `HKLM:\SOFTWARE\Microsoft\Cryptography\Defaults\Provider` (with a code-page-safe `certutil` fallback for hardened systems where the registry hive is unavailable), and CSP name matching in `Validate-CryptoProvider` now uses ordinal, case-insensitive comparison so results are unaffected by the current thread culture (Turkish-I folding, full-/half-width character folding, etc.). |
| 8 | +* Since adding JEA, lower privileged users can now run the extension in a local PowerShell Runspace without needing to be a member of the Administrators group. This is a security improvement, but it does require that the user has been granted access to the JEA endpoint on the target server. When running IIS jobs without JEA endpoints, the credentials entered will still need Administrative permissions. If you are running into permission issues, please check your JEA configuration and ensure that the user has been granted access to the endpoint. |
| 9 | +* Fixed IIS Inventory error propagation across all connection types (Local, WinRM, JEA, SSH). Previously, when the cmdlet encountered errors (e.g., insufficient admin rights), it used Write-Warning/Write-Information which didn't signal failure to the orchestrator. Over remote sessions, PS.HadErrors remained false and jobs returned 0 certificates with no indication of failure, making it impossible to distinguish between "no certificates found" vs "access denied". The cmdlet now returns structured KeyfactorResult JSON objects for all error scenarios, which the orchestrator detects and reports in JobResult.FailureMessage. This ensures reliable error detection and reporting regardless of connection type (Local PowerShell, WinRM HTTP/HTTPS, JEA endpoints, SSH sessions). |
| 10 | +* Fixed a potential issue where temporary files created during a remote ssh connection could be left behind if the job failed before cleanup. The cmdlet now uses a try/finally block to ensure that temporary files are deleted even if an error occurs during execution. |
| 11 | + |
| 12 | +3.0.2 |
| 13 | + |
| 14 | +* Fixed SQL service restart behavior: previously the extension could stop multiple SQL services and fail to start all of them. It now restarts only the SQL service associated with the certificate being renewed. |
| 15 | + |
1 | 16 | 3.0.1 |
2 | | -* Fixed an issues when renewing ECC Certificates |
| 17 | + |
| 18 | +* Fixed an issues when renewing ECC Certificates |
3 | 19 |
|
4 | 20 | 3.0.0 |
| 21 | + |
5 | 22 | * As of this version of the extension, SANs will be handled through the ODKG Enrollment page in Command, and will no longer use the SAN Entry Parameter. This version, we are removing the Entry Parameter "SAN" from the integration-manifest.json, but will still support previous versions of Command in the event the SAN Entry Parameter is passed. The next major version (4.0) will remove all support for the SAN Entry Parameter. |
6 | 23 | * Added WinADFS Store Type for rotating certificates in ADFS environments. Please note, only the service-communications certificate is rotated throughout your farm. |
7 | 24 | * Internal only: Added Integration Tests to aid in future development and testing. |
8 | 25 | * Improved messaging in the event an Entry Parameter is missing (or does not meet the casing requirements) |
9 | 26 | * Fixed the SNI/SSL flag being returned during inventory, now returns extended SSL flags |
10 | 27 | * Fixed the SNI/SSL flag when binding the certificate to allow for extended SSL flags |
11 | 28 | * Added SSL Flag validation to make sure the bit flag is correct. These are the valid bit flags for the version of Windows: |
12 | | - ### Windows Server 2012 R2 / Windows 8.1 and earlier (IIS 8.5): |
13 | | - * 0 No SNI |
14 | | - * 1 Use SNI |
15 | | - * 2 Use Centralized SSL certificate store. |
16 | | - |
17 | | - ### Windows Server 2016 (IIS 10.0): |
18 | | - * 0 No SNI |
19 | | - * 1 Use SNI |
20 | | - * 4 Disable HTTP/2. |
21 | | - |
22 | | - ### Windows Server 2019 (IIS 10.0.17763) |
23 | | - * 0 No SNI |
24 | | - * 1 Use SNI |
25 | | - * 4 Disable HTTP/2. |
26 | | - * 8 Disable OCSP Stapling. |
27 | | - |
28 | | - ### Windows Server 2022+ (IIS 10.0.20348+) |
29 | | - * 0 No SNI |
30 | | - * 1 Use SNI |
31 | | - * 4 Disable HTTP/2. |
32 | | - * 8 Disable OCSP Stapling. |
33 | | - * 16 Disable QUIC. |
34 | | - * 32 Disable TLS 1.3 over TCP. |
35 | | - * 64 Disable Legacy TLS. |
| 29 | + |
| 30 | +### Windows Server 2012 R2 / Windows 8.1 and earlier (IIS 8.5) |
| 31 | + |
| 32 | + * 0 No SNI |
| 33 | + * 1 Use SNI |
| 34 | + * 2 Use Centralized SSL certificate store. |
| 35 | + |
| 36 | +### Windows Server 2016 (IIS 10.0) |
| 37 | + |
| 38 | + * 0 No SNI |
| 39 | + * 1 Use SNI |
| 40 | + * 4 Disable HTTP/2. |
| 41 | + |
| 42 | +### Windows Server 2019 (IIS 10.0.17763) |
| 43 | + |
| 44 | + * 0 No SNI |
| 45 | + * 1 Use SNI |
| 46 | + * 4 Disable HTTP/2. |
| 47 | + * 8 Disable OCSP Stapling. |
| 48 | + |
| 49 | +### Windows Server 2022+ (IIS 10.0.20348+) |
| 50 | + |
| 51 | + * 0 No SNI |
| 52 | + * 1 Use SNI |
| 53 | + * 4 Disable HTTP/2. |
| 54 | + * 8 Disable OCSP Stapling. |
| 55 | + * 16 Disable QUIC. |
| 56 | + * 32 Disable TLS 1.3 over TCP. |
| 57 | + * 64 Disable Legacy TLS. |
36 | 58 |
|
37 | 59 | 2.6.4 |
| 60 | + |
38 | 61 | * Fixed an issue with SSL Flags greater than 3 were not being applied correctly to newer IIS servers. |
39 | 62 | * Fixed an issue when formatting private RSA keys when connecting using the ssh protocol. |
40 | 63 | * When using ssh protocol in containers, the SQL ACL on private keys was not being updating correctly. This has been fixed. |
41 | 64 | * Updated documentation to indicate that the username and password fields on the Cert Store are automatically added by Command. |
42 | 65 |
|
43 | 66 | 2.6.3 |
| 67 | + |
44 | 68 | * Fixed re-enrollment or ODKG job when RDN Components contained escaped commas. |
45 | 69 | * Updated renewal job for IIS Certs to delete the old cert if not bound or used by other web sites. |
46 | 70 | * Improved Inventory reporting of CSP when cert uses newer CNG Keys. |
|
51 | 75 | * Fixed an issue with (remote) ODKG jobs that caused an error when the CSP was not specified that did not require binding. |
52 | 76 |
|
53 | 77 | 2.6.2 |
| 78 | + |
54 | 79 | * Fixed error when attempting to connect to remote computer using UO service account |
55 | 80 | * Fixed error when connecting to remote computer using HTTPS; was defaulting to HTTP |
56 | 81 | * Fixed the creation of a certificate when the Cryptographic Service Provider was changed by the user |
57 | 82 | * Updated logic when getting the CSP. Now supports modern CHG and legacy CAPI APIs. This will allow the CSP to show in the stores inventory. |
58 | 83 | * Re-factored code to eliminate warnings |
59 | 84 | * Bumped up he following packages to eliminate .net vulnerabilities and obsolete packages: |
60 | | - * Keyfactor.Orchestrators.IOrchestratorJobExtensions" Version="1.0.0" |
| 85 | + * Keyfactor.Orchestrators.IOrchestratorJobExtensions" Version="1.0.0" |
61 | 86 | * Microsoft.PowerShell.SDK" Version="7.4.10" Condition="'$(TargetFramework)' == 'net8.0'" |
62 | 87 | * runtime.linux-arm64.runtime.native.System.IO.Ports" Version="9.0.5" |
63 | 88 | * runtime.osx-arm64.runtime.native.System.IO.Ports" Version="9.0.5" |
64 | 89 | * System.Formats.Asn1" Version="8.0.2" Condition="'$(TargetFramework)' == 'net6.0'" |
65 | | - * System.Formats.Asn1" Version="9.0.0" Condition="'$(TargetFramework)' == 'net8.0'" |
| 90 | + * System.Formats.Asn1" Version="9.0.0" Condition="'$(TargetFramework)' == 'net8.0'" |
66 | 91 | * System.IO.Packaging" Version="6.0.2" Condition="'$(TargetFramework)' == 'net6.0'" |
67 | 92 | * System.IO.Packaging" Version="8.0.1" Condition="'$(TargetFramework)' == 'net8.0'" |
68 | 93 | * System.Text.Json" Version="8.0.5" |
69 | 94 |
|
70 | 95 | 2.6.1 |
| 96 | + |
71 | 97 | * Documentation updates for the 2.6 release |
72 | 98 | * Fix a naming typo in the 2.5 migration SQL script |
73 | 99 | * Update integration-manifest.json |
|
77 | 103 | * Bumped System.IO.Packaging to 6.0.2 & 8.0.1 for .Net vulnerabilities. |
78 | 104 |
|
79 | 105 | 2.6.0 |
| 106 | + |
80 | 107 | * Added the ability to run the extension in a Linux environment. To utilize this change, for each Cert Store Types (WinCert/WinIIS/WinSQL), add ssh to the Custom Field <b>WinRM Protocol</b>. When using ssh as a protocol, make sure to enter the appropriate ssh port number under WinRM Port. |
81 | 108 | * NOTE: For legacy purposes the Display names WinRM Protocol and WinRM Port are maintained although the type of protocols now includes ssh. |
82 | 109 | * Moved all inventory and management jobs to external PowerShell script file .\PowerShellScripts\WinCertScripts.ps1 |
83 | 110 | * Changed how IIS Bound certificates are deleted; Certificates are only deleted from the certificate store when the certificate is NOT BOUND to any other sites. |
84 | 111 | * NOTE: This version was not publicly released. |
85 | 112 |
|
86 | 113 | 2.5.1 |
| 114 | + |
87 | 115 | * Fixed WinSQL service name when InstanceID differs from InstanceName |
88 | 116 |
|
89 | 117 | 2.5.0 |
| 118 | + |
90 | 119 | * Added the Bindings to the end of the thumbprint to make the alias unique. |
91 | 120 | * Using new IISWebBindings cmdlet to use additional SSL flags when binding certificate to website. |
92 | 121 | * NOTE: The property SNIFlag has changed from a multi-select to a string with default of "0". To properly use the new SNI/SSL flags you can delete the SNIFlag from the store type and re-add the field as described in the ReadMe. If you have several existing cert stores, you may can execute the SQL script (IISU Sni Flag 2.5 upgrade script) to update the field type. Consult your Keyfactor Rep for help. |
|
96 | 125 | * Removed renewal thumbprint logic to update multiple website; each job now updates its own specific certificate. |
97 | 126 |
|
98 | 127 | 2.4.4 |
| 128 | + |
99 | 129 | * Fix an issue with WinRM parameters when migrating Legacy IIS Stores to the WinCert type |
100 | 130 | * Fix an issue with "Delete" script in the Legacy IIS Migration that did not remove some records from dependent tables |
101 | 131 |
|
102 | 132 | 2.4.3 |
| 133 | + |
103 | 134 | * Adding Legacy IIS Migration scripting and ReadMe guide |
104 | 135 |
|
105 | 136 | 2.4.2 |
| 137 | + |
106 | 138 | * Correct false positive error when completing an IIS inventory job. |
107 | 139 | * Revert to specifying the version of PowerShell to use when establishing a local PowerShell Runspace. |
108 | 140 | * Fixed typo in error message. |
109 | 141 |
|
110 | 142 | 2.4.1 |
| 143 | + |
111 | 144 | * Modified the CertUtil logic to use the -addstore argument when no password is sent with the certificate information. |
112 | 145 | * Added additional error trapping and trace logs |
113 | 146 |
|
114 | 147 | 2.4.0 |
| 148 | + |
115 | 149 | * Changed the way certificates are added to cert stores. CertUtil is now used to import the PFX certificate into the associated store. The CSP is now considered when maintaining certificates, empty CSP values will result in using the machines default CSP. |
116 | 150 | * Added the Crypto Service Provider and SAN Entry Parameters to be used on Inventory queries, Adding and ReEnrollments for the WinCert, WinSQL and IISU extensions. |
117 | 151 | * Changed how Client Machine Names are handled when a 'localhost' connection is desired. The new naming convention is: {machineName}|localmachine. This will eliminate the issue of unique naming conflicts. |
118 | 152 | * Updated the manifest.json to now include WinSQL ReEnrollment. |
119 | 153 | * Updated the integration-manifest.json file for new fields in cert store types. |
120 | 154 |
|
121 | 155 | 2.3.2 |
| 156 | + |
122 | 157 | * Changed the Open Cert Store access level from a '5' to 'MaxAllowed' |
123 | 158 |
|
124 | 159 | 2.3.1 |
| 160 | + |
125 | 161 | * Added additional error trapping for WinRM connections to allow actual error on failure. |
126 | 162 |
|
127 | 163 | 2.3.0 |
| 164 | + |
128 | 165 | * Added Sql Server Binding Support |
129 | 166 | * Modified WinCert Advanced PrivateKeyAllowed setting from Required to Optional |
130 | 167 |
|
131 | 168 | 2.2.2 |
| 169 | + |
132 | 170 | * Removed empty constructor to resolve PAM provider error when using WinCert store types |
133 | 171 |
|
134 | 172 | 2.2.1 |
| 173 | + |
135 | 174 | * Fixed issue where https binding without cert was causing an error |
136 | 175 |
|
137 | 176 | 2.2.0 |
138 | | -* Added Support for GMSA Account by using no value for ServerUsernanme and ServerPassword. KF Command version 10.2 or later is required to specify empty credentials. |
| 177 | + |
| 178 | +* Added Support for GMSA Account by using no value for ServerUsernanme and ServerPassword. KF Command version 10.2 or later is required to specify empty credentials. |
| 179 | + |
139 | 180 | * Added local PowerShell support, triggered when specifying 'localhost' as the client machine while using the IISU or WinCert Orchestrator. This change was tested using KF Command 10.3 |
140 | 181 | * Moved to .NET 6 |
141 | 182 |
|
142 | 183 | 2.1.1 |
| 184 | + |
143 | 185 | * Fixed the missing site name error when issuing a WinCert job when writing trace log settings to the log file. |
144 | 186 | * Several display names changed in the documented certificate store type definitions. There are no changes to the internal type or parameter names, so no migration is necessary for currently configured stores. |
145 | | - * Display name for IISU changed to "IIS Bound Certificate". |
146 | | - * Display name for WinCert changed to "Windows Certificate". |
147 | | - * Display names for several Store and Entry parameters changed to be more descriptive and UI friendly. |
| 187 | + * Display name for IISU changed to "IIS Bound Certificate". |
| 188 | + * Display name for WinCert changed to "Windows Certificate". |
| 189 | + * Display names for several Store and Entry parameters changed to be more descriptive and UI friendly. |
148 | 190 | * Significant ReadMe cleanup |
149 | 191 |
|
150 | 192 | 2.1.0 |
| 193 | + |
151 | 194 | * Fixed issue that was occurring during renewal when there were bindings outside of http and https like net.tcp |
152 | 195 | * Added PAM registration/initialization documentation in README.md |
153 | | -* Resolved Null HostName error |
| 196 | +* Resolved Null HostName error |
154 | 197 | * Added WinCert Cert Store Type |
155 | 198 | * Added custom property parser to not show any passwords |
156 | 199 | * Removed any password references in trace logs and output settings in JSON format |
157 | 200 |
|
158 | 201 | 2.0.0 |
| 202 | + |
159 | 203 | * Add support for re-enrollment jobs (On Device Key Generation) with the ability to specify a cryptographic provider. Specification of cryptographic provider allows HSM (Hardware Security Module) use. |
160 | 204 | * Local PAM Support added (requires Universal Orchestrator Framework version 10.1) |
161 | 205 | * Certificate store type changed from IISBin to IISU. See README for migration notes. |
162 | 206 |
|
163 | | - |
164 | 207 | 1.1.3 |
| 208 | + |
165 | 209 | * Made WinRM port a store parameter |
166 | 210 | * Made WinRM protocol a store parameter |
167 | 211 | * IISWBin 1.1.3 upgrade script.sql added to upgrade from 1.1.2 |
168 | 212 |
|
169 | 213 | 1.1.0 |
| 214 | + |
170 | 215 | * Migrate to Universal Orchestrator (KF9 / .NET Core) |
171 | 216 | * Perform Renewals using RenewalThumbprint |
172 | 217 |
|
173 | 218 | 1.0.3 |
| 219 | + |
174 | 220 | * Add support for the SNI Flags when creating new bindings. Supported flags include: |
175 | | - * 0 No SNI |
| 221 | + * 0 No SNI |
176 | 222 | * 1 SNI Enabled |
177 | 223 | * 2 Non SNI binding which uses Central Certificate Store |
178 | 224 | * 3 SNI binding which uses Central Certificate Store |
179 | 225 | * Last release to support Windows Orchestrator (KF8) |
180 | 226 |
|
181 | 227 | 1.0.2 |
| 228 | + |
182 | 229 | * Remove dependence on Windows.Web.Administration on the orchestrator server. The agent will now use the local version on the managed server via remote PowerShell |
183 | 230 | * add support for the IncludePortInSPN flag |
184 | 231 | * add support to use credentials from Keyfactor for Add/Remove/Inventory jobs. |
0 commit comments