Resolve SCA triage log errors and bump jackson-databind to 2.21.1 (AST-136208)#476
Merged
cx-atish-jadhav merged 2 commits intomainfrom Mar 18, 2026
Merged
Resolve SCA triage log errors and bump jackson-databind to 2.21.1 (AST-136208)#476cx-atish-jadhav merged 2 commits intomainfrom
cx-atish-jadhav merged 2 commits intomainfrom
Conversation
Collaborator
|
New Issues (6)Checkmarx found the following issues in this Pull Request
Fixed Issues (1)Great job! The following issues were fixed in this Pull Request
Use @Checkmarx to interact with Checkmarx PR Assistant. |
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.




Description
This PR fixes SCA triage errors observed in JetBrains logs when opening SCA results from CxOne and upgrades the jackson-databind dependency to a non-vulnerable version.
Previously, the triage show/update functionality used a generic similarity-ID flow. However, SCA requires the use of the
--vulnerability-identifiersflag. Due to this mismatch, the CLI returned errors such as:What changed
Added SCA-specific CLI support in the wrapper:
triageScaShow(...)triageScaUpdate(...)Introduced a new SCA constant in
CxConstants:--vulnerability-identifiersAdded validation to handle missing or blank SCA vulnerability identifiers.
Added SCA triage integration coverage in
PredicateTest.Dependency update
The Maven build reported a vulnerability in the Java wrapper version 2.4.7, which depends on jackson-databind version 2.16.1 (now known to be vulnerable).
To resolve this and ensure the scan passes successfully, the jackson-databind version has been upgraded to 2.21.1 in the
pom.xmlof the Java wrapper.Result