fix(security): remediate OWASP/CWE audit findings (2026-06-30)#244
Merged
Conversation
…audit Fixes identified in automated security audit (kestra-plugin-security-auditing skill): - HIGH: Multiple credential fields in AuthenticationConfig missing @PluginProperty(secret=true) - HIGH: Databricks access token embedded in plain-text shell command string Part of security audit EPIC. See kestra-io/kestra-ee#9092 for full scope.
Contributor
📦 Artifacts
🛡 TrivyVulnerability in:
|
| Vulnerability | Severity | Package | Installed Version | Fixed Version |
|---|---|---|---|---|
| CVE-2026-54512 | HIGH | com.fasterxml.jackson.core:jackson-databind | 2.18.7 | 2.18.8, 3.1.4, 2.21.4 |
| CVE-2026-54513 | HIGH | com.fasterxml.jackson.core:jackson-databind | 2.18.7 | 2.18.8, 2.21.4, 3.1.4 |
| CVE-2026-54514 | MEDIUM | com.fasterxml.jackson.core:jackson-databind | 2.18.7 | 2.18.8, 2.21.4, 3.1.4 |
| CVE-2026-54515 | MEDIUM | com.fasterxml.jackson.core:jackson-databind | 2.18.7 | 3.1.4, 2.18.9, 2.21.5 |
🧪 Java Unit Tests
| Tests | Passed ✅ | Skipped | Failed | Time ⏱ | |
|---|---|---|---|---|---|
| Java Tests Report | 15 ran | 6 ✅ | 9 | 0 ❌ | 3s 486ms |
🔁 Unreleased Commits
1 commits since v1.4.1
| SHA | Title | Author | Date |
|---|---|---|---|
225ff22 |
chore(deps): group io.kestra.gradle.* dependabot updates | Malay Dewangan | Jun 30, 26, 10:12:25 AM UTC |
Contributor
Tests report quick summary:success ✅ > tests: 15, success: 6, skipped: 9, failed: 0 unfold for details
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Remediates all findings from the 2026-06-30 automated security audit against OWASP Top 10 (2025), CWE Top 25, and OWASP ASVS Level 1.
Findings Fixed
HIGH Multiple credential fields in AuthenticationConfig missing @PluginProperty(secret=true) (
src/main/java/io/kestra/plugin/databricks/AbstractTask.java:86)@PluginProperty(secret = true)totoken,clientSecret,password,googleCredentials, andazureClientSecretfields inAuthenticationConfigso the Kestra UI and serialisation layer correctly mask these values.HIGH Databricks access token embedded in plain-text shell command string (
src/main/java/io/kestra/plugin/databricks/cli/DatabricksSQLCLI.java:159)run()and passed it toCommandsWrapper.withEnv()asDATABRICKS_TOKEN; the command now references$DATABRICKS_TOKENinstead of embedding the secret value in the process argument list.Testing
./gradlew buildpassesReferences
Automated security fix — please review each change carefully before merging.