Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[8.16](backport #6710) Redacted nested secrets path value #6739

Merged
merged 1 commit into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Kind can be one of:
# - breaking-change: a change to previously-documented behavior
# - deprecation: functionality that is being removed in a later release
# - bug-fix: fixes a problem in a previous version
# - enhancement: extends functionality but does not break or fix existing behavior
# - feature: new functionality
# - known-issue: problems that we are aware of in a given version
# - security: impacts on the security of a product or a user’s deployment.
# - upgrade: important information for someone upgrading from a prior version
# - other: does not fit into any of the other categories
kind: bug-fix

# Change summary; a 80ish characters long description of the change.
summary: Fix secret_paths redaction along complex paths

# Long description; in case the summary is not enough to describe the change
# this field accommodate a description without length limits.
# NOTE: This field will be rendered only for breaking-change and known-issue kinds at the moment.
#description:

# Affected component; usually one of "elastic-agent", "fleet-server", "filebeat", "metricbeat", "auditbeat", "all", etc.
component: elastic-agent

# PR URL; optional; the PR number that added the changeset.
# If not present is automatically filled by the tooling finding the PR where this changelog fragment has been added.
# NOTE: the tooling supports backports, so it's able to fill the original PR number instead of the backport PR number.
# Please provide it if you are adding a fragment for a different PR.
pr: https://github.com/elastic/elastic-agent/pull/6710

# Issue URL; optional; the GitHub issue related to this changeset (either closes or is part of).
# If not present is automatically filled by the tooling with the issue linked to the PR number.
#issue: https://github.com/owner/repo/1234
11 changes: 8 additions & 3 deletions internal/pkg/diagnostics/diagnostics.go
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,8 @@ func redactKey(k string) bool {
strings.Contains(k, "passphrase") ||
strings.Contains(k, "password") ||
strings.Contains(k, "token") ||
strings.Contains(k, "key")
strings.Contains(k, "key") ||
strings.Contains(k, "secret")
}

func zipLogs(zw *zip.Writer, ts time.Time, topPath string, excludeEvents bool) error {
Expand Down Expand Up @@ -588,19 +589,23 @@ func RedactSecretPaths(mapStr map[string]any, errOut io.Writer) map[string]any {
fmt.Fprintln(errOut, "No output redaction: secret_paths attribute is not a list.")
return mapStr
}
cfg := ucfg.MustNewFrom(mapStr)
cfg := ucfg.MustNewFrom(mapStr, ucfg.PathSep("."))
for _, v := range arr {
key, ok := v.(string)
if !ok {
fmt.Fprintf(errOut, "No output redaction for %q: expected type string, is type %T.\n", v, v)
continue
}

if ok, _ := cfg.Has(key, -1, ucfg.PathSep(".")); ok {
if ok, err := cfg.Has(key, -1, ucfg.PathSep(".")); err != nil {
fmt.Fprintf(errOut, "Error redacting secret path %q: %v.\n", key, err)
} else if ok {
err := cfg.SetString(key, -1, REDACTED, ucfg.PathSep("."))
if err != nil {
fmt.Fprintf(errOut, "No output redaction for %q: %v.\n", key, err)
}
} else {
fmt.Fprintf(errOut, "Unable to find secret path %q for redaction.\n", key)
}
}
result, err := config.MustNewConfigFrom(cfg).ToMapStr()
Expand Down
41 changes: 40 additions & 1 deletion internal/pkg/diagnostics/diagnostics_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -248,16 +248,55 @@ secret_paths:
- inputs.0.redactKey
- inputs.1.missingKey
- outputs.default.redactOtherKey
`,
}, {
name: "path in nested list",
input: []byte(`id: test-policy
inputs:
- type: httpjson
data_stream:
namespace: default
streams:
- config_version: "2"
request.transforms:
- set:
target: header.Authorization
value: SSWS this-should-be-redacted
- set:
target: url.params.limit
value: "1000"
secret_paths:
- inputs.0.streams.0.request.transforms.0.set.value
`),
expect: `id: test-policy
inputs:
- data_stream:
namespace: default
streams:
- config_version: "2"
request:
transforms:
- set:
target: header.Authorization
value: <REDACTED>
- set:
target: url.params.limit
value: "1000"
type: httpjson
secret_paths:
- inputs.0.streams.0.request.transforms.0.set.value
`,
}}

for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
file := client.DiagnosticFileResult{Content: tc.input, ContentType: "application/yaml"}
var out bytes.Buffer
err := writeRedacted(io.Discard, &out, "testPath", file)
var errOut bytes.Buffer
err := writeRedacted(&errOut, &out, "testPath", file)
require.NoError(t, err)

t.Logf("Error output: %s", errOut.String())
assert.Equal(t, tc.expect, out.String())
})
}
Expand Down
Loading