fix(fp): suppress false positive for microsoft-kiota-abstractions (#8539)#8543
Closed
Umesh042005 wants to merge 1 commit into
Closed
fix(fp): suppress false positive for microsoft-kiota-abstractions (#8539)#8543Umesh042005 wants to merge 1 commit into
Umesh042005 wants to merge 1 commit into
Conversation
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 of Change
Investigated and reproduced a false positive affecting:
pkg:maven/com.microsoft.kiota/microsoft-kiota-abstractions@1.9.0Dependency-Check currently maps the artifact to:
cpe:2.3:a:microsoft:kiotawhich results in
CVE-2026-41134being reported.From investigation of the package structure and advisory scope, the vulnerability appears related to runtime/code-generation behavior, while
microsoft-kiota-abstractionsprimarily provides abstraction/interface contracts without the concrete runtime implementation associated with the vulnerable behavior.This change adds a narrow suppression scoped specifically to:
pkg:maven/com.microsoft.kiota/microsoft-kiota-abstractionsCVE-2026-41134to avoid broader suppression of other Kiota runtime artifacts.
Related issues
Have test cases been added to cover the new functionality?
No
The change is limited to a targeted false-positive suppression rule and existing project builds/tests complete successfully.