Skip to content

Commit 827f6e9

Browse files
authored
Merge pull request #69 from Keyfactor/release-2.8
Merge 2.8.1 release to main
2 parents 11a8936 + c721afe commit 827f6e9

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
v2.8.1
2+
- Fixed issue were sensitive information could be exposed at debug logging level
3+
14
v2.8.0
25
- Added new custom field - Remove Root Certificate from Chain - to allow adding certificate entries with the root CA certificate removed from the chain.
36
- Added SSH KeyboardInteractive Authentication support if Password Authentication is not enabled.

RemoteFile/InventoryBase.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ public JobResult ProcessJob(InventoryJobConfiguration config, SubmitInventoryUpd
3131
logger.LogDebug($"Begin {config.Capability} for job id {config.JobId}...");
3232
logger.LogDebug($"Server: { config.CertificateStoreDetails.ClientMachine }");
3333
logger.LogDebug($"Store Path: { config.CertificateStoreDetails.StorePath }");
34-
logger.LogDebug($"Store Properties: {config.CertificateStoreDetails.Properties.ToString()}");
35-
logger.LogDebug($"Job Properties:");
34+
logger.LogDebug($"Job Properties:");
3635
foreach (KeyValuePair<string, object> keyValue in config.JobProperties ?? new Dictionary<string,object>())
3736
{
3837
logger.LogDebug($" {keyValue.Key}: {keyValue.Value}");

RemoteFile/ManagementBase.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ public JobResult ProcessJob(ManagementJobConfiguration config)
3030
ILogger logger = LogHandler.GetClassLogger(this.GetType());
3131
logger.LogDebug($"Begin {config.Capability} for job id {config.JobId}...");
3232
logger.LogDebug($"Server: {config.CertificateStoreDetails.ClientMachine}");
33-
logger.LogDebug($"Store Path: {config.CertificateStoreDetails.StorePath}");
34-
logger.LogDebug($"Store Properties: {config.CertificateStoreDetails.Properties.ToString()}");
33+
logger.LogDebug($"Store Path: {config.CertificateStoreDetails.StorePath}");
3534
logger.LogDebug($"Job Properties:");
3635
foreach (KeyValuePair<string, object> keyValue in config.JobProperties == null ? new Dictionary<string, object>() : config.JobProperties)
3736
{

0 commit comments

Comments
 (0)