Add CVSS 3.1 score for GHSA-cfh3-3jmp-rvhc (Pillow OOB Write via PSD)#6851
Open
sunnypatell wants to merge 1 commit intogithub:sunnypatell/advisory-improvement-6851from
Open
Conversation
There was a problem hiding this comment.
Pull request overview
Adds a missing CVSS 3.1 vector to the GHSA advisory so consumers that rely on CVSS v3 can compute severity consistently alongside existing CVSS v4 data.
Changes:
- Add a
CVSS_V3entry with a CVSS:3.1 vector to the advisory’sseveritylist - Normalize/fix the JSON file ending/formatting
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+12
to
18
| { | ||
| "type": "CVSS_V3", | ||
| "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" | ||
| }, | ||
| { | ||
| "type": "CVSS_V4", | ||
| "score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:P" |
There was a problem hiding this comment.
The JSON will be invalid if there isn’t a comma separating the CVSS_V3 object from the following CVSS_V4 object. Ensure line 15 ends with a comma (i.e., },) before the next object begins.
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.
Changes
Added missing CVSS 3.1 scoring to GHSA-cfh3-3jmp-rvhc (Pillow Out-of-Bounds Write via PSD Images).
Added:
AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H(8.8 High)Reason for change
This advisory had no CVSS 3.1 score. NVD only provides CVSS 4.0 scoring (8.9) for CVE-2026-25990. Adding a CVSS 3.1 vector ensures broader compatibility with vulnerability management tools that rely on CVSS 3.1 for severity assessment.
CVSS justification
The CVSS 4.0 vector uses
UI:NandE:P(PoC exists), resulting in 8.9. The CVSS 3.1 translation usesUI:Rper standard practice for file-parsing vulnerabilities, resulting in 8.8.Supporting links