Skip to content

Commit

Permalink
Merge 72f60e9 into 0c72b17
Browse files Browse the repository at this point in the history
  • Loading branch information
leefine02 authored Oct 8, 2024
2 parents 0c72b17 + 72f60e9 commit 375c64e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v2.8.1
- 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.
- Added SSH KeyboardInteractive Authentication support if Password Authentication is not enabled.
Expand Down
3 changes: 1 addition & 2 deletions RemoteFile/InventoryBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +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($"Store Properties: {config.CertificateStoreDetails.Properties.ToString()}");
logger.LogDebug($"Job Properties:");
logger.LogDebug($"Job Properties:");
foreach (KeyValuePair<string, object> keyValue in config.JobProperties ?? new Dictionary<string,object>())
{
logger.LogDebug($" {keyValue.Key}: {keyValue.Value}");
Expand Down
3 changes: 1 addition & 2 deletions RemoteFile/ManagementBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +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 Properties: {config.CertificateStoreDetails.Properties.ToString()}");
logger.LogDebug($"Store Path: {config.CertificateStoreDetails.StorePath}");
logger.LogDebug($"Job Properties:");
foreach (KeyValuePair<string, object> keyValue in config.JobProperties == null ? new Dictionary<string, object>() : config.JobProperties)
{
Expand Down

0 comments on commit 375c64e

Please sign in to comment.