From d3ea6bccaffc6b9c0fd18c42d8ba3bda26a9cebf Mon Sep 17 00:00:00 2001 From: Lee Fine Date: Tue, 8 Oct 2024 16:49:09 +0000 Subject: [PATCH 1/4] ab#64108 --- RemoteFile/InventoryBase.cs | 1 - RemoteFile/ManagementBase.cs | 1 - 2 files changed, 2 deletions(-) diff --git a/RemoteFile/InventoryBase.cs b/RemoteFile/InventoryBase.cs index 327e945..0d1a04c 100644 --- a/RemoteFile/InventoryBase.cs +++ b/RemoteFile/InventoryBase.cs @@ -31,7 +31,6 @@ public JobResult ProcessJob(InventoryJobConfiguration config, SubmitInventoryUpd logger.LogDebug($"Begin {config.Capability} for job id {config.JobId}..."); logger.LogDebug($"Server: { config.CertificateStoreDetails.ClientMachine }"); logger.LogDebug($"Store Path: { config.CertificateStoreDetails.StorePath }"); - logger.LogDebug($"Store Properties: {config.CertificateStoreDetails.Properties.ToString()}"); logger.LogDebug($"Job Properties:"); foreach (KeyValuePair keyValue in config.JobProperties ?? new Dictionary()) { diff --git a/RemoteFile/ManagementBase.cs b/RemoteFile/ManagementBase.cs index 9645068..c2c992e 100644 --- a/RemoteFile/ManagementBase.cs +++ b/RemoteFile/ManagementBase.cs @@ -31,7 +31,6 @@ public JobResult ProcessJob(ManagementJobConfiguration config) logger.LogDebug($"Begin {config.Capability} for job id {config.JobId}..."); logger.LogDebug($"Server: {config.CertificateStoreDetails.ClientMachine}"); logger.LogDebug($"Store Path: {config.CertificateStoreDetails.StorePath}"); - logger.LogDebug($"Store Properties: {config.CertificateStoreDetails.Properties.ToString()}"); logger.LogDebug($"Job Properties:"); foreach (KeyValuePair keyValue in config.JobProperties == null ? new Dictionary() : config.JobProperties) { From d862ba503c2ae18d36147bb7282137b9db435981 Mon Sep 17 00:00:00 2001 From: Lee Fine Date: Tue, 8 Oct 2024 16:54:24 +0000 Subject: [PATCH 2/4] ab#64108 --- RemoteFile/InventoryBase.cs | 2 +- RemoteFile/ManagementBase.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/RemoteFile/InventoryBase.cs b/RemoteFile/InventoryBase.cs index 0d1a04c..51f19e9 100644 --- a/RemoteFile/InventoryBase.cs +++ b/RemoteFile/InventoryBase.cs @@ -31,7 +31,7 @@ public JobResult ProcessJob(InventoryJobConfiguration config, SubmitInventoryUpd logger.LogDebug($"Begin {config.Capability} for job id {config.JobId}..."); logger.LogDebug($"Server: { config.CertificateStoreDetails.ClientMachine }"); logger.LogDebug($"Store Path: { config.CertificateStoreDetails.StorePath }"); - logger.LogDebug($"Job Properties:"); + logger.LogDebug($"Job Properties:"); foreach (KeyValuePair keyValue in config.JobProperties ?? new Dictionary()) { logger.LogDebug($" {keyValue.Key}: {keyValue.Value}"); diff --git a/RemoteFile/ManagementBase.cs b/RemoteFile/ManagementBase.cs index c2c992e..955dd86 100644 --- a/RemoteFile/ManagementBase.cs +++ b/RemoteFile/ManagementBase.cs @@ -30,7 +30,7 @@ public JobResult ProcessJob(ManagementJobConfiguration config) ILogger logger = LogHandler.GetClassLogger(this.GetType()); logger.LogDebug($"Begin {config.Capability} for job id {config.JobId}..."); logger.LogDebug($"Server: {config.CertificateStoreDetails.ClientMachine}"); - logger.LogDebug($"Store Path: {config.CertificateStoreDetails.StorePath}"); + logger.LogDebug($"Store Path: {config.CertificateStoreDetails.StorePath}"); logger.LogDebug($"Job Properties:"); foreach (KeyValuePair keyValue in config.JobProperties == null ? new Dictionary() : config.JobProperties) { From 2027a8ba64596f4c86c872b77f3f87a798fc4ea3 Mon Sep 17 00:00:00 2001 From: Lee Fine Date: Tue, 8 Oct 2024 16:59:15 +0000 Subject: [PATCH 3/4] ab#64108 --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0696ada..11a5257 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +v2.8.1 +- Logging bug fix + v2.8.0 - Added new custom field - Remove Root Certificate from Chain - to allow adding certificate entries with the root CA certificate removed from the chain. - Added SSH KeyboardInteractive Authentication support if Password Authentication is not enabled. From 72f60e91e5d9a6d3de55725c9fa5a16be3b5788c Mon Sep 17 00:00:00 2001 From: Lee Fine Date: Tue, 8 Oct 2024 17:50:53 +0000 Subject: [PATCH 4/4] ab#64108 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11a5257..f37712e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ v2.8.1 -- Logging bug fix +- Fixed issue were sensitive information could be exposed at debug logging level v2.8.0 - Added new custom field - Remove Root Certificate from Chain - to allow adding certificate entries with the root CA certificate removed from the chain.