summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Marko <peter.marko@siemens.com>2025-04-25 18:26:45 +0200
committerSteve Sakoman <steve@sakoman.com>2025-05-02 08:12:41 -0700
commitf6bbf5dc3affaed1eaa001c5b3e1879b71c503e3 (patch)
treece40d24b98048186dacc3e9347d6dbaf1cd58c86
parentfd6b4fb51108607f9b1f4c5dd413dca1618a3ac5 (diff)
downloadpoky-f6bbf5dc3affaed1eaa001c5b3e1879b71c503e3.tar.gz
ghostscript: ignore CVE-2025-27833
Vulnerable code was introduced in 9.56.0, so 9.55.0 is not affected yet Commit introducing vulnerable feature: * https://cgit.ghostscript.com/cgi-bin/cgit.cgi/ghostpdl.git/commit/pdf/pdf_fmap.c?id=0a1d08d91a95746f41e8c1d578a4e4af81ee5949 Commit fixing the vulnerability: * https://cgit.ghostscript.com/cgi-bin/cgit.cgi/ghostpdl.git/commit/?id=477e36cfa1faa0037069a22eeeb4fc750733f120 (From OE-Core rev: e1f3d02e80f6bdd942321d9f6718dcc36afe9df8) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--meta/recipes-extended/ghostscript/ghostscript_9.55.0.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/ghostscript/ghostscript_9.55.0.bb b/meta/recipes-extended/ghostscript/ghostscript_9.55.0.bb
index 8499bb3676..3d4ac77cfa 100644
--- a/meta/recipes-extended/ghostscript/ghostscript_9.55.0.bb
+++ b/meta/recipes-extended/ghostscript/ghostscript_9.55.0.bb
@@ -22,9 +22,10 @@ UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)\.tar"
22# As of ghostscript 9.54.0 the jpeg issue in the CVE is present in the gs jpeg sources 22# As of ghostscript 9.54.0 the jpeg issue in the CVE is present in the gs jpeg sources
23# however we use an external jpeg which doesn't have the issue. 23# however we use an external jpeg which doesn't have the issue.
24CVE_CHECK_IGNORE += "CVE-2013-6629" 24CVE_CHECK_IGNORE += "CVE-2013-6629"
25
26# Issue in the GhostPCL. GhostPCL not part of this GhostScript recipe. 25# Issue in the GhostPCL. GhostPCL not part of this GhostScript recipe.
27CVE_CHECK_IGNORE += "CVE-2023-38560 CVE-2024-46954" 26CVE_CHECK_IGNORE += "CVE-2023-38560 CVE-2024-46954"
27# Vulnerable code was introduced in 9.56.0, so 9.55.0 is not affected yet
28CVE_CHECK_IGNORE += "CVE-2025-27833"
28 29
29def gs_verdir(v): 30def gs_verdir(v):
30 return "".join(v.split(".")) 31 return "".join(v.split("."))