Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-33416 (GCVE-0-2026-33416)
Vulnerability from cvelistv5 – Published: 2026-03-26 16:48 – Updated: 2026-04-01 03:55- CWE-416 - Use After Free
| URL | Tags |
|---|---|
| https://github.com/pnggroup/libpng/security/advis… | x_refsource_CONFIRM |
| https://github.com/pnggroup/libpng/pull/824 | x_refsource_MISC |
| https://github.com/pnggroup/libpng/commit/2301926… | x_refsource_MISC |
| https://github.com/pnggroup/libpng/commit/7ea9eea… | x_refsource_MISC |
| https://github.com/pnggroup/libpng/commit/a3a2144… | x_refsource_MISC |
| https://github.com/pnggroup/libpng/commit/c1b0318… | x_refsource_MISC |
{
"containers": {
"adp": [
{
"metrics": [
{
"other": {
"content": {
"id": "CVE-2026-33416",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "no"
},
{
"Technical Impact": "total"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-03-31T00:00:00+00:00",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"providerMetadata": {
"dateUpdated": "2026-04-01T03:55:17.603Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
}
],
"cna": {
"affected": [
{
"product": "libpng",
"vendor": "pnggroup",
"versions": [
{
"status": "affected",
"version": "\u003e= 1.2.1, \u003c 1.6.56"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "LIBPNG is a reference library for use in applications that read, create, and manipulate PNG (Portable Network Graphics) raster image files. In versions 1.2.1 through 1.6.55, `png_set_tRNS` and `png_set_PLTE` each alias a heap-allocated buffer between `png_struct` and `png_info`, sharing a single allocation across two structs with independent lifetimes. The `trans_alpha` aliasing has been present since at least libpng 1.0, and the `palette` aliasing since at least 1.2.1. Both affect all prior release lines `png_set_tRNS` sets `png_ptr-\u003etrans_alpha = info_ptr-\u003etrans_alpha` (256-byte buffer) and `png_set_PLTE` sets `info_ptr-\u003epalette = png_ptr-\u003epalette` (768-byte buffer). In both cases, calling `png_free_data` (with `PNG_FREE_TRNS` or `PNG_FREE_PLTE`) frees the buffer through `info_ptr` while the corresponding `png_ptr` pointer remains dangling. Subsequent row-transform functions dereference and, in some code paths, write to the freed memory. A second call to `png_set_tRNS` or `png_set_PLTE` has the same effect, because both functions call `png_free_data` internally before reallocating the `info_ptr` buffer. Version 1.6.56 fixes the issue."
}
],
"metrics": [
{
"cvssV3_1": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-416",
"description": "CWE-416: Use After Free",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-03-26T16:48:54.174Z",
"orgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"shortName": "GitHub_M"
},
"references": [
{
"name": "https://github.com/pnggroup/libpng/security/advisories/GHSA-m4pc-p4q3-4c7j",
"tags": [
"x_refsource_CONFIRM"
],
"url": "https://github.com/pnggroup/libpng/security/advisories/GHSA-m4pc-p4q3-4c7j"
},
{
"name": "https://github.com/pnggroup/libpng/pull/824",
"tags": [
"x_refsource_MISC"
],
"url": "https://github.com/pnggroup/libpng/pull/824"
},
{
"name": "https://github.com/pnggroup/libpng/commit/23019269764e35ed8458e517f1897bd3c54820eb",
"tags": [
"x_refsource_MISC"
],
"url": "https://github.com/pnggroup/libpng/commit/23019269764e35ed8458e517f1897bd3c54820eb"
},
{
"name": "https://github.com/pnggroup/libpng/commit/7ea9eea884a2328cc7fdcb3c0c00246a50d90667",
"tags": [
"x_refsource_MISC"
],
"url": "https://github.com/pnggroup/libpng/commit/7ea9eea884a2328cc7fdcb3c0c00246a50d90667"
},
{
"name": "https://github.com/pnggroup/libpng/commit/a3a21443ed12bfa1ef46fa0d4fb2b74a0fa34a25",
"tags": [
"x_refsource_MISC"
],
"url": "https://github.com/pnggroup/libpng/commit/a3a21443ed12bfa1ef46fa0d4fb2b74a0fa34a25"
},
{
"name": "https://github.com/pnggroup/libpng/commit/c1b0318b393c90679e6fa5bc1d329fd5d5012ec1",
"tags": [
"x_refsource_MISC"
],
"url": "https://github.com/pnggroup/libpng/commit/c1b0318b393c90679e6fa5bc1d329fd5d5012ec1"
}
],
"source": {
"advisory": "GHSA-m4pc-p4q3-4c7j",
"discovery": "UNKNOWN"
},
"title": "LIBPNG has use-after-free via pointer aliasing in `png_set_tRNS` and `png_set_PLTE`"
}
},
"cveMetadata": {
"assignerOrgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"assignerShortName": "GitHub_M",
"cveId": "CVE-2026-33416",
"datePublished": "2026-03-26T16:48:54.174Z",
"dateReserved": "2026-03-19T17:02:34.172Z",
"dateUpdated": "2026-04-01T03:55:17.603Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2026-33416",
"date": "2026-07-24",
"epss": "0.01052",
"percentile": "0.60774"
},
"microsoft_vex": {
"current_release_date": "2026-04-15T01:38:06.000Z",
"cve": "CVE-2026-33416",
"id": "msrc_CVE-2026-33416",
"initial_release_date": "2026-03-02T00:00:00.000Z",
"product_status:fixed": "2",
"product_status:known_affected": "2",
"product_status:known_not_affected": "6",
"source": "Microsoft CSAF VEX",
"status": "final",
"title": "LIBPNG has use-after-free via pointer aliasing in `png_set_tRNS` and `png_set_PLTE`",
"url": "https://msrc.microsoft.com/csaf/vex/2026/msrc_cve-2026-33416.json",
"version": "6"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2026-33416\",\"sourceIdentifier\":\"security-advisories@github.com\",\"published\":\"2026-03-26T17:16:38.443\",\"lastModified\":\"2026-06-17T10:37:27.583\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"LIBPNG is a reference library for use in applications that read, create, and manipulate PNG (Portable Network Graphics) raster image files. In versions 1.2.1 through 1.6.55, `png_set_tRNS` and `png_set_PLTE` each alias a heap-allocated buffer between `png_struct` and `png_info`, sharing a single allocation across two structs with independent lifetimes. The `trans_alpha` aliasing has been present since at least libpng 1.0, and the `palette` aliasing since at least 1.2.1. Both affect all prior release lines `png_set_tRNS` sets `png_ptr-\u003etrans_alpha = info_ptr-\u003etrans_alpha` (256-byte buffer) and `png_set_PLTE` sets `info_ptr-\u003epalette = png_ptr-\u003epalette` (768-byte buffer). In both cases, calling `png_free_data` (with `PNG_FREE_TRNS` or `PNG_FREE_PLTE`) frees the buffer through `info_ptr` while the corresponding `png_ptr` pointer remains dangling. Subsequent row-transform functions dereference and, in some code paths, write to the freed memory. A second call to `png_set_tRNS` or `png_set_PLTE` has the same effect, because both functions call `png_free_data` internally before reallocating the `info_ptr` buffer. Version 1.6.56 fixes the issue.\"},{\"lang\":\"es\",\"value\":\"LIBPNG es una biblioteca de referencia para su uso en aplicaciones que leen, crean y manipulan archivos de imagen r\u00e1ster PNG (Portable Network Graphics). En las versiones 1.2.1 a 1.6.55, \u0027png_set_tRNS\u0027 y \u0027png_set_PLTE\u0027 cada una aliasan un b\u00fafer asignado en el heap entre \u0027png_struct\u0027 y \u0027png_info\u0027, compartiendo una \u00fanica asignaci\u00f3n entre dos estructuras con vidas \u00fatiles independientes. El aliasing de \u0027trans_alpha\u0027 ha estado presente desde al menos libpng 1.0, y el aliasing de \u0027palette\u0027 desde al menos 1.2.1. Ambos afectan a todas las l\u00edneas de versiones anteriores: \u0027png_set_tRNS\u0027 establece \u0027png_ptr-\u0026gt;trans_alpha = info_ptr-\u0026gt;trans_alpha\u0027 (b\u00fafer de 256 bytes) y \u0027png_set_PLTE\u0027 establece \u0027info_ptr-\u0026gt;palette = png_ptr-\u0026gt;palette\u0027 (b\u00fafer de 768 bytes). En ambos casos, llamar a \u0027png_free_data\u0027 (con \u0027PNG_FREE_TRNS\u0027 o \u0027PNG_FREE_PLTE\u0027) libera el b\u00fafer a trav\u00e9s de \u0027info_ptr\u0027 mientras que el puntero \u0027png_ptr\u0027 correspondiente permanece colgante. Las funciones de transformaci\u00f3n de fila subsiguientes desreferencian y, en algunas rutas de c\u00f3digo, escriben en la memoria liberada. Una segunda llamada a \u0027png_set_tRNS\u0027 o \u0027png_set_PLTE\u0027 tiene el mismo efecto, porque ambas funciones llaman internamente a \u0027png_free_data\u0027 antes de reasignar el b\u00fafer de \u0027info_ptr\u0027. La versi\u00f3n 1.6.56 corrige el problema.\"}],\"affected\":[{\"source\":\"security-advisories@github.com\",\"affectedData\":[{\"vendor\":\"pnggroup\",\"product\":\"libpng\",\"versions\":[{\"version\":\"\u003e= 1.2.1, \u003c 1.6.56\",\"status\":\"affected\"}]}]}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H\",\"baseScore\":7.5,\"baseSeverity\":\"HIGH\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"HIGH\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"REQUIRED\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":1.6,\"impactScore\":5.9}],\"ssvcV203\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"ssvcData\":{\"timestamp\":\"2026-03-31T00:00:00+00:00\",\"id\":\"CVE-2026-33416\",\"options\":[{\"exploitation\":\"none\"},{\"automatable\":\"no\"},{\"technicalImpact\":\"total\"}],\"role\":\"CISA Coordinator\",\"version\":\"2.0.3\"}}]},\"weaknesses\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-416\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:libpng:libpng:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"1.2.1\",\"versionEndExcluding\":\"1.6.56\",\"matchCriteriaId\":\"C54F2804-F7D5-4BC5-B39A-44300C6A6F98\"}]}]}],\"references\":[{\"url\":\"https://github.com/pnggroup/libpng/commit/23019269764e35ed8458e517f1897bd3c54820eb\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/pnggroup/libpng/commit/7ea9eea884a2328cc7fdcb3c0c00246a50d90667\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/pnggroup/libpng/commit/a3a21443ed12bfa1ef46fa0d4fb2b74a0fa34a25\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/pnggroup/libpng/commit/c1b0318b393c90679e6fa5bc1d329fd5d5012ec1\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/pnggroup/libpng/pull/824\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Exploit\",\"Issue Tracking\"]},{\"url\":\"https://github.com/pnggroup/libpng/security/advisories/GHSA-m4pc-p4q3-4c7j\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Patch\",\"Vendor Advisory\"]}]}}",
"redhat_vex": {
"aggregate_severity": "Moderate",
"current_release_date": "2026-07-22T18:07:24+00:00",
"cve": "CVE-2026-33416",
"id": "CVE-2026-33416",
"initial_release_date": "2026-03-26T16:48:54.174000+00:00",
"product_status:fixed": "4127",
"product_status:known_affected": "25",
"product_status:known_not_affected": "10",
"source": "Red Hat CSAF VEX",
"status": "final",
"title": "libpng: libpng: Arbitrary code execution due to use-after-free vulnerability",
"url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-33416.json",
"version": "3"
},
"suse_vex": {
"aggregate_severity": "important",
"current_release_date": "2026-07-15T05:18:59Z",
"cve": "CVE-2026-33416",
"id": "CVE-2026-33416",
"initial_release_date": "2026-03-26T14:43:15Z",
"product_status:known_affected": "441",
"product_status:recommended": "378",
"source": "SUSE CSAF VEX",
"status": "interim",
"title": "SUSE CVE CVE-2026-33416",
"url": "https://ftp.suse.com/pub/projects/security/csaf-vex/cve-2026-33416.json",
"version": "26"
},
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2026-33416\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"no\"}, {\"Technical Impact\": \"total\"}], \"version\": \"2.0.3\", \"timestamp\": \"2026-03-26T19:49:05.196519Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2026-03-26T19:50:41.189Z\"}}], \"cna\": {\"title\": \"LIBPNG has use-after-free via pointer aliasing in `png_set_tRNS` and `png_set_PLTE`\", \"source\": {\"advisory\": \"GHSA-m4pc-p4q3-4c7j\", \"discovery\": \"UNKNOWN\"}, \"metrics\": [{\"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 7.5, \"attackVector\": \"NETWORK\", \"baseSeverity\": \"HIGH\", \"vectorString\": \"CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H\", \"integrityImpact\": \"HIGH\", \"userInteraction\": \"REQUIRED\", \"attackComplexity\": \"HIGH\", \"availabilityImpact\": \"HIGH\", \"privilegesRequired\": \"NONE\", \"confidentialityImpact\": \"HIGH\"}}], \"affected\": [{\"vendor\": \"pnggroup\", \"product\": \"libpng\", \"versions\": [{\"status\": \"affected\", \"version\": \"\u003e= 1.2.1, \u003c 1.6.56\"}]}], \"references\": [{\"url\": \"https://github.com/pnggroup/libpng/security/advisories/GHSA-m4pc-p4q3-4c7j\", \"name\": \"https://github.com/pnggroup/libpng/security/advisories/GHSA-m4pc-p4q3-4c7j\", \"tags\": [\"x_refsource_CONFIRM\"]}, {\"url\": \"https://github.com/pnggroup/libpng/pull/824\", \"name\": \"https://github.com/pnggroup/libpng/pull/824\", \"tags\": [\"x_refsource_MISC\"]}, {\"url\": \"https://github.com/pnggroup/libpng/commit/23019269764e35ed8458e517f1897bd3c54820eb\", \"name\": \"https://github.com/pnggroup/libpng/commit/23019269764e35ed8458e517f1897bd3c54820eb\", \"tags\": [\"x_refsource_MISC\"]}, {\"url\": \"https://github.com/pnggroup/libpng/commit/7ea9eea884a2328cc7fdcb3c0c00246a50d90667\", \"name\": \"https://github.com/pnggroup/libpng/commit/7ea9eea884a2328cc7fdcb3c0c00246a50d90667\", \"tags\": [\"x_refsource_MISC\"]}, {\"url\": \"https://github.com/pnggroup/libpng/commit/a3a21443ed12bfa1ef46fa0d4fb2b74a0fa34a25\", \"name\": \"https://github.com/pnggroup/libpng/commit/a3a21443ed12bfa1ef46fa0d4fb2b74a0fa34a25\", \"tags\": [\"x_refsource_MISC\"]}, {\"url\": \"https://github.com/pnggroup/libpng/commit/c1b0318b393c90679e6fa5bc1d329fd5d5012ec1\", \"name\": \"https://github.com/pnggroup/libpng/commit/c1b0318b393c90679e6fa5bc1d329fd5d5012ec1\", \"tags\": [\"x_refsource_MISC\"]}], \"descriptions\": [{\"lang\": \"en\", \"value\": \"LIBPNG is a reference library for use in applications that read, create, and manipulate PNG (Portable Network Graphics) raster image files. In versions 1.2.1 through 1.6.55, `png_set_tRNS` and `png_set_PLTE` each alias a heap-allocated buffer between `png_struct` and `png_info`, sharing a single allocation across two structs with independent lifetimes. The `trans_alpha` aliasing has been present since at least libpng 1.0, and the `palette` aliasing since at least 1.2.1. Both affect all prior release lines `png_set_tRNS` sets `png_ptr-\u003etrans_alpha = info_ptr-\u003etrans_alpha` (256-byte buffer) and `png_set_PLTE` sets `info_ptr-\u003epalette = png_ptr-\u003epalette` (768-byte buffer). In both cases, calling `png_free_data` (with `PNG_FREE_TRNS` or `PNG_FREE_PLTE`) frees the buffer through `info_ptr` while the corresponding `png_ptr` pointer remains dangling. Subsequent row-transform functions dereference and, in some code paths, write to the freed memory. A second call to `png_set_tRNS` or `png_set_PLTE` has the same effect, because both functions call `png_free_data` internally before reallocating the `info_ptr` buffer. Version 1.6.56 fixes the issue.\"}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-416\", \"description\": \"CWE-416: Use After Free\"}]}], \"providerMetadata\": {\"orgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"shortName\": \"GitHub_M\", \"dateUpdated\": \"2026-03-26T16:48:54.174Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2026-33416\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2026-04-01T03:55:17.603Z\", \"dateReserved\": \"2026-03-19T17:02:34.172Z\", \"assignerOrgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"datePublished\": \"2026-03-26T16:48:54.174Z\", \"assignerShortName\": \"GitHub_M\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
rlsa-2026:26347
Vulnerability from osv_rocky
The libpng15 package provides libpng 1.5, an older version of the libpng. library for manipulating PNG (Portable Network Graphics) image format files. This version should be used only if you are unable to use the current version of libpng.
Security Fix(es):
- libpng: libpng: Arbitrary code execution due to use-after-free vulnerability (CVE-2026-33416)
For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.
| URL | Type | |
|---|---|---|
{
"affected": [
{
"package": {
"ecosystem": "Rocky Linux:8",
"name": "libpng15",
"purl": "pkg:rpm/rocky-linux/libpng15?distro=rocky-linux-8\u0026epoch=0"
},
"ranges": [
{
"database_specific": {
"yum_repository": "AppStream"
},
"events": [
{
"introduced": "0"
},
{
"fixed": "0:1.5.30-9.el8_10"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"credits": [
{
"name": "Rocky Enterprise Software Foundation"
},
{
"name": "Red Hat"
}
],
"details": "The libpng15 package provides libpng 1.5, an older version of the libpng. library for manipulating PNG (Portable Network Graphics) image format files. This version should be used only if you are unable to use the current version of libpng.\n\nSecurity Fix(es):\n\n* libpng: libpng: Arbitrary code execution due to use-after-free vulnerability (CVE-2026-33416)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"id": "RLSA-2026:26347",
"modified": "2026-07-01T06:04:54.127398Z",
"published": "2026-06-17T06:00:26.379988Z",
"references": [
{
"type": "ADVISORY",
"url": "https://errata.rockylinux.org/RLSA-2026:26347"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451805"
}
],
"schema_version": "1.7.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H",
"type": "CVSS_V3"
}
],
"summary": "Moderate: libpng15 security update",
"upstream": [
"CVE-2026-33416"
]
}
rlsa-2026:26348
Vulnerability from osv_rocky
The libpng12 package provides libpng 1.2, which is the previous version of the libpng library for manipulating PNG (Portable Network Graphics) image format files. This version should be used in case that it is not possible to use the current version of libpng.
Security Fix(es):
- libpng: libpng: Arbitrary code execution due to use-after-free vulnerability (CVE-2026-33416)
For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.
| URL | Type | |
|---|---|---|
{
"affected": [
{
"package": {
"ecosystem": "Rocky Linux:8",
"name": "libpng12",
"purl": "pkg:rpm/rocky-linux/libpng12?distro=rocky-linux-8\u0026epoch=0"
},
"ranges": [
{
"database_specific": {
"yum_repository": "AppStream"
},
"events": [
{
"introduced": "0"
},
{
"fixed": "0:1.2.57-7.el8_10"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"credits": [
{
"name": "Rocky Enterprise Software Foundation"
},
{
"name": "Red Hat"
}
],
"details": "The libpng12 package provides libpng 1.2, which is the previous version of the libpng library for manipulating PNG (Portable Network Graphics) image format files. This version should be used in case that it is not possible to use the current version of libpng.\n\nSecurity Fix(es):\n\n* libpng: libpng: Arbitrary code execution due to use-after-free vulnerability (CVE-2026-33416)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"id": "RLSA-2026:26348",
"modified": "2026-07-01T06:04:54.069533Z",
"published": "2026-06-17T06:00:26.379988Z",
"references": [
{
"type": "ADVISORY",
"url": "https://errata.rockylinux.org/RLSA-2026:26348"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451805"
}
],
"schema_version": "1.7.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H",
"type": "CVSS_V3"
}
],
"summary": "Moderate: libpng12 security update",
"upstream": [
"CVE-2026-33416"
]
}
rlsa-2026:28233
Vulnerability from osv_rocky
The libpng packages contain a library of functions for creating and manipulating Portable Network Graphics (PNG) image format files.
Security Fix(es):
-
libpng: libpng: Arbitrary code execution due to use-after-free vulnerability (CVE-2026-33416)
-
libpng: libpng: Information disclosure and denial of service via out-of-bounds read/write in Neon palette expansion (CVE-2026-33636)
For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.
{
"affected": [
{
"package": {
"ecosystem": "Rocky Linux:10",
"name": "libpng",
"purl": "pkg:rpm/rocky-linux/libpng?distro=rocky-linux-10\u0026epoch=2"
},
"ranges": [
{
"database_specific": {
"yum_repository": "BaseOS"
},
"events": [
{
"introduced": "0"
},
{
"fixed": "2:1.6.40-11.el10_2.1"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"credits": [
{
"name": "Rocky Enterprise Software Foundation"
},
{
"name": "Red Hat"
}
],
"details": "The libpng packages contain a library of functions for creating and manipulating Portable Network Graphics (PNG) image format files.\n\nSecurity Fix(es):\n\n* libpng: libpng: Arbitrary code execution due to use-after-free vulnerability (CVE-2026-33416)\n\n* libpng: libpng: Information disclosure and denial of service via out-of-bounds read/write in Neon palette expansion (CVE-2026-33636)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"id": "RLSA-2026:28233",
"modified": "2026-07-08T12:08:28.120350Z",
"published": "2026-06-24T12:05:09.232192Z",
"references": [
{
"type": "ADVISORY",
"url": "https://errata.rockylinux.org/RLSA-2026:28233"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451805"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451819"
}
],
"schema_version": "1.7.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:H",
"type": "CVSS_V3"
}
],
"summary": "Moderate: libpng security update",
"upstream": [
"CVE-2026-33416",
"CVE-2026-33636"
]
}
rlsa-2026:28244
Vulnerability from osv_rocky
The libpng15 package provides libpng 1.5, an older version of the libpng. library for manipulating PNG (Portable Network Graphics) image format files. This version should be used only if you are unable to use the current version of libpng.
Security Fix(es):
- libpng: libpng: Arbitrary code execution due to use-after-free vulnerability (CVE-2026-33416)
For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.
| URL | Type | |
|---|---|---|
{
"affected": [
{
"package": {
"ecosystem": "Rocky Linux:9",
"name": "libpng15",
"purl": "pkg:rpm/rocky-linux/libpng15?distro=rocky-linux-9\u0026epoch=0"
},
"ranges": [
{
"database_specific": {
"yum_repository": "AppStream"
},
"events": [
{
"introduced": "0"
},
{
"fixed": "0:1.5.30-15.el9_8.1"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"credits": [
{
"name": "Rocky Enterprise Software Foundation"
},
{
"name": "Red Hat"
}
],
"details": "The libpng15 package provides libpng 1.5, an older version of the libpng. library for manipulating PNG (Portable Network Graphics) image format files. This version should be used only if you are unable to use the current version of libpng.\n\nSecurity Fix(es):\n\n* libpng: libpng: Arbitrary code execution due to use-after-free vulnerability (CVE-2026-33416)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"id": "RLSA-2026:28244",
"modified": "2026-07-08T12:08:23.542451Z",
"published": "2026-06-24T12:03:26.635873Z",
"references": [
{
"type": "ADVISORY",
"url": "https://errata.rockylinux.org/RLSA-2026:28244"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451805"
}
],
"schema_version": "1.7.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H",
"type": "CVSS_V3"
}
],
"summary": "Moderate: libpng15 security update",
"upstream": [
"CVE-2026-33416"
]
}
rlsa-2026:28255
Vulnerability from osv_rocky
The libpng packages contain a library of functions for creating and manipulating Portable Network Graphics (PNG) image format files.
Security Fix(es):
-
libpng: libpng: Arbitrary code execution due to use-after-free vulnerability (CVE-2026-33416)
-
libpng: libpng: Information disclosure and denial of service via out-of-bounds read/write in Neon palette expansion (CVE-2026-33636)
For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.
{
"affected": [
{
"package": {
"ecosystem": "Rocky Linux:9",
"name": "libpng",
"purl": "pkg:rpm/rocky-linux/libpng?distro=rocky-linux-9\u0026epoch=2"
},
"ranges": [
{
"database_specific": {
"yum_repository": "BaseOS"
},
"events": [
{
"introduced": "0"
},
{
"fixed": "2:1.6.37-15.el9_8.2"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"credits": [
{
"name": "Rocky Enterprise Software Foundation"
},
{
"name": "Red Hat"
}
],
"details": "The libpng packages contain a library of functions for creating and manipulating Portable Network Graphics (PNG) image format files.\n\nSecurity Fix(es):\n\n* libpng: libpng: Arbitrary code execution due to use-after-free vulnerability (CVE-2026-33416)\n\n* libpng: libpng: Information disclosure and denial of service via out-of-bounds read/write in Neon palette expansion (CVE-2026-33636)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"id": "RLSA-2026:28255",
"modified": "2026-07-08T12:08:23.633185Z",
"published": "2026-06-24T12:03:26.635873Z",
"references": [
{
"type": "ADVISORY",
"url": "https://errata.rockylinux.org/RLSA-2026:28255"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451805"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451819"
}
],
"schema_version": "1.7.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:H",
"type": "CVSS_V3"
}
],
"summary": "Moderate: libpng security update",
"upstream": [
"CVE-2026-33416",
"CVE-2026-33636"
]
}
rlsa-2026:29898
Vulnerability from osv_rocky
The libpng packages contain a library of functions for creating and manipulating Portable Network Graphics (PNG) image format files.
Security Fix(es):
- libpng: libpng: Arbitrary code execution due to use-after-free vulnerability (CVE-2026-33416)
For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.
| URL | Type | |
|---|---|---|
{
"affected": [
{
"package": {
"ecosystem": "Rocky Linux:8",
"name": "libpng",
"purl": "pkg:rpm/rocky-linux/libpng?distro=rocky-linux-8\u0026epoch=2"
},
"ranges": [
{
"database_specific": {
"yum_repository": "BaseOS"
},
"events": [
{
"introduced": "0"
},
{
"fixed": "2:1.6.34-11.el8_10"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"credits": [
{
"name": "Rocky Enterprise Software Foundation"
},
{
"name": "Red Hat"
}
],
"details": "The libpng packages contain a library of functions for creating and manipulating Portable Network Graphics (PNG) image format files.\n\nSecurity Fix(es):\n\n* libpng: libpng: Arbitrary code execution due to use-after-free vulnerability (CVE-2026-33416)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"id": "RLSA-2026:29898",
"modified": "2026-07-10T00:06:30.022485Z",
"published": "2026-06-26T00:00:49.542580Z",
"references": [
{
"type": "ADVISORY",
"url": "https://errata.rockylinux.org/RLSA-2026:29898"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451805"
}
],
"schema_version": "1.7.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H",
"type": "CVSS_V3"
}
],
"summary": "Moderate: libpng security update",
"upstream": [
"CVE-2026-33416"
]
}
SUSE-SU-2026:1311-1
Vulnerability from csaf_suse - Published: 2026-04-14 10:44 - Updated: 2026-04-14 10:44| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-32bit-1.6.8-15.21.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-32bit-1.6.8-15.21.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-16-1.6.8-15.21.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-16-32bit-1.6.8-15.21.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-compat-devel-1.6.8-15.21.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-devel-1.6.8-15.21.1.x86_64 | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for libpng16",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for libpng16 fixes the following issue:\n\n- CVE-2026-33416: use-after-free via pointer aliasing in `png_set_tRNS` and `png_set_PLTE` can lead to arbitrary code\n execution (bsc#1260754).\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2026-1311,SUSE-SLE-SERVER-12-SP5-LTSS-2026-1311,SUSE-SLE-SERVER-12-SP5-LTSS-EXTENDED-SECURITY-2026-1311",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2026_1311-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2026:1311-1",
"url": "https://www.suse.com/support/update/announcement/2026/suse-su-20261311-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2026:1311-1",
"url": "https://lists.suse.com/pipermail/sle-updates/2026-April/045515.html"
},
{
"category": "self",
"summary": "SUSE Bug 1260754",
"url": "https://bugzilla.suse.com/1260754"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-33416 page",
"url": "https://www.suse.com/security/cve/CVE-2026-33416/"
}
],
"title": "Security update for libpng16",
"tracking": {
"current_release_date": "2026-04-14T10:44:51Z",
"generator": {
"date": "2026-04-14T10:44:51Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2026:1311-1",
"initial_release_date": "2026-04-14T10:44:51Z",
"revision_history": [
{
"date": "2026-04-14T10:44:51Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-1.6.8-15.21.1.aarch64",
"product": {
"name": "libpng16-16-1.6.8-15.21.1.aarch64",
"product_id": "libpng16-16-1.6.8-15.21.1.aarch64"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-1.6.8-15.21.1.aarch64",
"product": {
"name": "libpng16-compat-devel-1.6.8-15.21.1.aarch64",
"product_id": "libpng16-compat-devel-1.6.8-15.21.1.aarch64"
}
},
{
"category": "product_version",
"name": "libpng16-devel-1.6.8-15.21.1.aarch64",
"product": {
"name": "libpng16-devel-1.6.8-15.21.1.aarch64",
"product_id": "libpng16-devel-1.6.8-15.21.1.aarch64"
}
},
{
"category": "product_version",
"name": "libpng16-tools-1.6.8-15.21.1.aarch64",
"product": {
"name": "libpng16-tools-1.6.8-15.21.1.aarch64",
"product_id": "libpng16-tools-1.6.8-15.21.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-64bit-1.6.8-15.21.1.aarch64_ilp32",
"product": {
"name": "libpng16-16-64bit-1.6.8-15.21.1.aarch64_ilp32",
"product_id": "libpng16-16-64bit-1.6.8-15.21.1.aarch64_ilp32"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-64bit-1.6.8-15.21.1.aarch64_ilp32",
"product": {
"name": "libpng16-compat-devel-64bit-1.6.8-15.21.1.aarch64_ilp32",
"product_id": "libpng16-compat-devel-64bit-1.6.8-15.21.1.aarch64_ilp32"
}
},
{
"category": "product_version",
"name": "libpng16-devel-64bit-1.6.8-15.21.1.aarch64_ilp32",
"product": {
"name": "libpng16-devel-64bit-1.6.8-15.21.1.aarch64_ilp32",
"product_id": "libpng16-devel-64bit-1.6.8-15.21.1.aarch64_ilp32"
}
}
],
"category": "architecture",
"name": "aarch64_ilp32"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-1.6.8-15.21.1.i586",
"product": {
"name": "libpng16-16-1.6.8-15.21.1.i586",
"product_id": "libpng16-16-1.6.8-15.21.1.i586"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-1.6.8-15.21.1.i586",
"product": {
"name": "libpng16-compat-devel-1.6.8-15.21.1.i586",
"product_id": "libpng16-compat-devel-1.6.8-15.21.1.i586"
}
},
{
"category": "product_version",
"name": "libpng16-devel-1.6.8-15.21.1.i586",
"product": {
"name": "libpng16-devel-1.6.8-15.21.1.i586",
"product_id": "libpng16-devel-1.6.8-15.21.1.i586"
}
},
{
"category": "product_version",
"name": "libpng16-tools-1.6.8-15.21.1.i586",
"product": {
"name": "libpng16-tools-1.6.8-15.21.1.i586",
"product_id": "libpng16-tools-1.6.8-15.21.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-1.6.8-15.21.1.ppc64le",
"product": {
"name": "libpng16-16-1.6.8-15.21.1.ppc64le",
"product_id": "libpng16-16-1.6.8-15.21.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-1.6.8-15.21.1.ppc64le",
"product": {
"name": "libpng16-compat-devel-1.6.8-15.21.1.ppc64le",
"product_id": "libpng16-compat-devel-1.6.8-15.21.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libpng16-devel-1.6.8-15.21.1.ppc64le",
"product": {
"name": "libpng16-devel-1.6.8-15.21.1.ppc64le",
"product_id": "libpng16-devel-1.6.8-15.21.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libpng16-tools-1.6.8-15.21.1.ppc64le",
"product": {
"name": "libpng16-tools-1.6.8-15.21.1.ppc64le",
"product_id": "libpng16-tools-1.6.8-15.21.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-1.6.8-15.21.1.s390",
"product": {
"name": "libpng16-16-1.6.8-15.21.1.s390",
"product_id": "libpng16-16-1.6.8-15.21.1.s390"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-1.6.8-15.21.1.s390",
"product": {
"name": "libpng16-compat-devel-1.6.8-15.21.1.s390",
"product_id": "libpng16-compat-devel-1.6.8-15.21.1.s390"
}
},
{
"category": "product_version",
"name": "libpng16-devel-1.6.8-15.21.1.s390",
"product": {
"name": "libpng16-devel-1.6.8-15.21.1.s390",
"product_id": "libpng16-devel-1.6.8-15.21.1.s390"
}
},
{
"category": "product_version",
"name": "libpng16-tools-1.6.8-15.21.1.s390",
"product": {
"name": "libpng16-tools-1.6.8-15.21.1.s390",
"product_id": "libpng16-tools-1.6.8-15.21.1.s390"
}
}
],
"category": "architecture",
"name": "s390"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-1.6.8-15.21.1.s390x",
"product": {
"name": "libpng16-16-1.6.8-15.21.1.s390x",
"product_id": "libpng16-16-1.6.8-15.21.1.s390x"
}
},
{
"category": "product_version",
"name": "libpng16-16-32bit-1.6.8-15.21.1.s390x",
"product": {
"name": "libpng16-16-32bit-1.6.8-15.21.1.s390x",
"product_id": "libpng16-16-32bit-1.6.8-15.21.1.s390x"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-1.6.8-15.21.1.s390x",
"product": {
"name": "libpng16-compat-devel-1.6.8-15.21.1.s390x",
"product_id": "libpng16-compat-devel-1.6.8-15.21.1.s390x"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-32bit-1.6.8-15.21.1.s390x",
"product": {
"name": "libpng16-compat-devel-32bit-1.6.8-15.21.1.s390x",
"product_id": "libpng16-compat-devel-32bit-1.6.8-15.21.1.s390x"
}
},
{
"category": "product_version",
"name": "libpng16-devel-1.6.8-15.21.1.s390x",
"product": {
"name": "libpng16-devel-1.6.8-15.21.1.s390x",
"product_id": "libpng16-devel-1.6.8-15.21.1.s390x"
}
},
{
"category": "product_version",
"name": "libpng16-devel-32bit-1.6.8-15.21.1.s390x",
"product": {
"name": "libpng16-devel-32bit-1.6.8-15.21.1.s390x",
"product_id": "libpng16-devel-32bit-1.6.8-15.21.1.s390x"
}
},
{
"category": "product_version",
"name": "libpng16-tools-1.6.8-15.21.1.s390x",
"product": {
"name": "libpng16-tools-1.6.8-15.21.1.s390x",
"product_id": "libpng16-tools-1.6.8-15.21.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-1.6.8-15.21.1.x86_64",
"product": {
"name": "libpng16-16-1.6.8-15.21.1.x86_64",
"product_id": "libpng16-16-1.6.8-15.21.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-16-32bit-1.6.8-15.21.1.x86_64",
"product": {
"name": "libpng16-16-32bit-1.6.8-15.21.1.x86_64",
"product_id": "libpng16-16-32bit-1.6.8-15.21.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-1.6.8-15.21.1.x86_64",
"product": {
"name": "libpng16-compat-devel-1.6.8-15.21.1.x86_64",
"product_id": "libpng16-compat-devel-1.6.8-15.21.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-32bit-1.6.8-15.21.1.x86_64",
"product": {
"name": "libpng16-compat-devel-32bit-1.6.8-15.21.1.x86_64",
"product_id": "libpng16-compat-devel-32bit-1.6.8-15.21.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-devel-1.6.8-15.21.1.x86_64",
"product": {
"name": "libpng16-devel-1.6.8-15.21.1.x86_64",
"product_id": "libpng16-devel-1.6.8-15.21.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-devel-32bit-1.6.8-15.21.1.x86_64",
"product": {
"name": "libpng16-devel-32bit-1.6.8-15.21.1.x86_64",
"product_id": "libpng16-devel-32bit-1.6.8-15.21.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-tools-1.6.8-15.21.1.x86_64",
"product": {
"name": "libpng16-tools-1.6.8-15.21.1.x86_64",
"product_id": "libpng16-tools-1.6.8-15.21.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 12 SP5-LTSS",
"product": {
"name": "SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles-ltss:12:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server LTSS Extended Security 12 SP5",
"product": {
"name": "SUSE Linux Enterprise Server LTSS Extended Security 12 SP5",
"product_id": "SUSE Linux Enterprise Server LTSS Extended Security 12 SP5",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles-ltss-extended-security:12:sp5"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.8-15.21.1.aarch64 as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.aarch64"
},
"product_reference": "libpng16-16-1.6.8-15.21.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.8-15.21.1.ppc64le as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.ppc64le"
},
"product_reference": "libpng16-16-1.6.8-15.21.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.8-15.21.1.s390x as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.s390x"
},
"product_reference": "libpng16-16-1.6.8-15.21.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.8-15.21.1.x86_64 as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.x86_64"
},
"product_reference": "libpng16-16-1.6.8-15.21.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-32bit-1.6.8-15.21.1.s390x as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-32bit-1.6.8-15.21.1.s390x"
},
"product_reference": "libpng16-16-32bit-1.6.8-15.21.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-32bit-1.6.8-15.21.1.x86_64 as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-32bit-1.6.8-15.21.1.x86_64"
},
"product_reference": "libpng16-16-32bit-1.6.8-15.21.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.8-15.21.1.aarch64 as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.aarch64"
},
"product_reference": "libpng16-compat-devel-1.6.8-15.21.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.8-15.21.1.ppc64le as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.ppc64le"
},
"product_reference": "libpng16-compat-devel-1.6.8-15.21.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.8-15.21.1.s390x as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.s390x"
},
"product_reference": "libpng16-compat-devel-1.6.8-15.21.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.8-15.21.1.x86_64 as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.x86_64"
},
"product_reference": "libpng16-compat-devel-1.6.8-15.21.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.8-15.21.1.aarch64 as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.aarch64"
},
"product_reference": "libpng16-devel-1.6.8-15.21.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.8-15.21.1.ppc64le as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.ppc64le"
},
"product_reference": "libpng16-devel-1.6.8-15.21.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.8-15.21.1.s390x as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.s390x"
},
"product_reference": "libpng16-devel-1.6.8-15.21.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.8-15.21.1.x86_64 as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.x86_64"
},
"product_reference": "libpng16-devel-1.6.8-15.21.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.8-15.21.1.x86_64 as component of SUSE Linux Enterprise Server LTSS Extended Security 12 SP5",
"product_id": "SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-16-1.6.8-15.21.1.x86_64"
},
"product_reference": "libpng16-16-1.6.8-15.21.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server LTSS Extended Security 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-32bit-1.6.8-15.21.1.x86_64 as component of SUSE Linux Enterprise Server LTSS Extended Security 12 SP5",
"product_id": "SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-16-32bit-1.6.8-15.21.1.x86_64"
},
"product_reference": "libpng16-16-32bit-1.6.8-15.21.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server LTSS Extended Security 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.8-15.21.1.x86_64 as component of SUSE Linux Enterprise Server LTSS Extended Security 12 SP5",
"product_id": "SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-compat-devel-1.6.8-15.21.1.x86_64"
},
"product_reference": "libpng16-compat-devel-1.6.8-15.21.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server LTSS Extended Security 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.8-15.21.1.x86_64 as component of SUSE Linux Enterprise Server LTSS Extended Security 12 SP5",
"product_id": "SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-devel-1.6.8-15.21.1.x86_64"
},
"product_reference": "libpng16-devel-1.6.8-15.21.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server LTSS Extended Security 12 SP5"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33416",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-33416"
}
],
"notes": [
{
"category": "general",
"text": "LIBPNG is a reference library for use in applications that read, create, and manipulate PNG (Portable Network Graphics) raster image files. In versions 1.2.1 through 1.6.55, `png_set_tRNS` and `png_set_PLTE` each alias a heap-allocated buffer between `png_struct` and `png_info`, sharing a single allocation across two structs with independent lifetimes. The `trans_alpha` aliasing has been present since at least libpng 1.0, and the `palette` aliasing since at least 1.2.1. Both affect all prior release lines `png_set_tRNS` sets `png_ptr-\u003etrans_alpha = info_ptr-\u003etrans_alpha` (256-byte buffer) and `png_set_PLTE` sets `info_ptr-\u003epalette = png_ptr-\u003epalette` (768-byte buffer). In both cases, calling `png_free_data` (with `PNG_FREE_TRNS` or `PNG_FREE_PLTE`) frees the buffer through `info_ptr` while the corresponding `png_ptr` pointer remains dangling. Subsequent row-transform functions dereference and, in some code paths, write to the freed memory. A second call to `png_set_tRNS` or `png_set_PLTE` has the same effect, because both functions call `png_free_data` internally before reallocating the `info_ptr` buffer. Version 1.6.56 fixes the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-32bit-1.6.8-15.21.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-32bit-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-16-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-16-32bit-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-compat-devel-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-devel-1.6.8-15.21.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-33416",
"url": "https://www.suse.com/security/cve/CVE-2026-33416"
},
{
"category": "external",
"summary": "SUSE Bug 1260754 for CVE-2026-33416",
"url": "https://bugzilla.suse.com/1260754"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-32bit-1.6.8-15.21.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-32bit-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-16-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-16-32bit-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-compat-devel-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-devel-1.6.8-15.21.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-32bit-1.6.8-15.21.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-16-32bit-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-compat-devel-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng16-devel-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-16-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-16-32bit-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-compat-devel-1.6.8-15.21.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng16-devel-1.6.8-15.21.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-14T10:44:51Z",
"details": "important"
}
],
"title": "CVE-2026-33416"
}
]
}
SUSE-SU-2026:1323-1
Vulnerability from csaf_suse - Published: 2026-04-14 13:11 - Updated: 2026-04-14 13:11| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-16-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-16-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-16-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-16-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libpng16-16-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libpng16-16-1.6.34-150000.3.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libpng16-16-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libpng16-16-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libpng16-16-1.6.34-150000.3.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libpng16-16-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.4:libpng16-16-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.4:libpng16-16-1.6.34-150000.3.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.4:libpng16-16-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-16-1.6.34-150000.3.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-16-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-devel-1.6.34-150000.3.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-devel-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-16-1.6.34-150000.3.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-16-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-devel-1.6.34-150000.3.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-devel-1.6.34-150000.3.22.1.x86_64 | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for libpng16",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for libpng16 fixes the following issues:\n\n- CVE-2026-33416: use-after-free via pointer aliasing in `png_set_tRNS` and `png_set_PLTE` can lead to arbitrary code\n execution (bsc#1260754).\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2026-1323,SUSE-SLE-Micro-5.3-2026-1323,SUSE-SLE-Micro-5.4-2026-1323,SUSE-SLE-Micro-5.5-2026-1323,SUSE-SLE-Product-HPC-15-SP4-ESPOS-2026-1323,SUSE-SLE-Product-HPC-15-SP4-LTSS-2026-1323,SUSE-SLE-Product-HPC-15-SP5-ESPOS-2026-1323,SUSE-SLE-Product-HPC-15-SP5-LTSS-2026-1323,SUSE-SLE-Product-SLES-15-SP4-LTSS-2026-1323,SUSE-SLE-Product-SLES-15-SP5-LTSS-2026-1323,SUSE-SLE-Product-SLES_SAP-15-SP4-2026-1323,SUSE-SLE-Product-SLES_SAP-15-SP5-2026-1323,SUSE-SUSE-MicroOS-5.2-2026-1323",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2026_1323-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2026:1323-1",
"url": "https://www.suse.com/support/update/announcement/2026/suse-su-20261323-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2026:1323-1",
"url": "https://lists.suse.com/pipermail/sle-updates/2026-April/045524.html"
},
{
"category": "self",
"summary": "SUSE Bug 1260754",
"url": "https://bugzilla.suse.com/1260754"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-33416 page",
"url": "https://www.suse.com/security/cve/CVE-2026-33416/"
}
],
"title": "Security update for libpng16",
"tracking": {
"current_release_date": "2026-04-14T13:11:55Z",
"generator": {
"date": "2026-04-14T13:11:55Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2026:1323-1",
"initial_release_date": "2026-04-14T13:11:55Z",
"revision_history": [
{
"date": "2026-04-14T13:11:55Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-1.6.34-150000.3.22.1.aarch64",
"product": {
"name": "libpng16-16-1.6.34-150000.3.22.1.aarch64",
"product_id": "libpng16-16-1.6.34-150000.3.22.1.aarch64"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"product": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"product_id": "libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64"
}
},
{
"category": "product_version",
"name": "libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"product": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"product_id": "libpng16-devel-1.6.34-150000.3.22.1.aarch64"
}
},
{
"category": "product_version",
"name": "libpng16-tools-1.6.34-150000.3.22.1.aarch64",
"product": {
"name": "libpng16-tools-1.6.34-150000.3.22.1.aarch64",
"product_id": "libpng16-tools-1.6.34-150000.3.22.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-64bit-1.6.34-150000.3.22.1.aarch64_ilp32",
"product": {
"name": "libpng16-16-64bit-1.6.34-150000.3.22.1.aarch64_ilp32",
"product_id": "libpng16-16-64bit-1.6.34-150000.3.22.1.aarch64_ilp32"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-64bit-1.6.34-150000.3.22.1.aarch64_ilp32",
"product": {
"name": "libpng16-compat-devel-64bit-1.6.34-150000.3.22.1.aarch64_ilp32",
"product_id": "libpng16-compat-devel-64bit-1.6.34-150000.3.22.1.aarch64_ilp32"
}
},
{
"category": "product_version",
"name": "libpng16-devel-64bit-1.6.34-150000.3.22.1.aarch64_ilp32",
"product": {
"name": "libpng16-devel-64bit-1.6.34-150000.3.22.1.aarch64_ilp32",
"product_id": "libpng16-devel-64bit-1.6.34-150000.3.22.1.aarch64_ilp32"
}
}
],
"category": "architecture",
"name": "aarch64_ilp32"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-1.6.34-150000.3.22.1.i586",
"product": {
"name": "libpng16-16-1.6.34-150000.3.22.1.i586",
"product_id": "libpng16-16-1.6.34-150000.3.22.1.i586"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.i586",
"product": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.i586",
"product_id": "libpng16-compat-devel-1.6.34-150000.3.22.1.i586"
}
},
{
"category": "product_version",
"name": "libpng16-devel-1.6.34-150000.3.22.1.i586",
"product": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.i586",
"product_id": "libpng16-devel-1.6.34-150000.3.22.1.i586"
}
},
{
"category": "product_version",
"name": "libpng16-tools-1.6.34-150000.3.22.1.i586",
"product": {
"name": "libpng16-tools-1.6.34-150000.3.22.1.i586",
"product_id": "libpng16-tools-1.6.34-150000.3.22.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"product": {
"name": "libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"product_id": "libpng16-16-1.6.34-150000.3.22.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"product": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"product_id": "libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"product": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"product_id": "libpng16-devel-1.6.34-150000.3.22.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libpng16-tools-1.6.34-150000.3.22.1.ppc64le",
"product": {
"name": "libpng16-tools-1.6.34-150000.3.22.1.ppc64le",
"product_id": "libpng16-tools-1.6.34-150000.3.22.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-1.6.34-150000.3.22.1.s390x",
"product": {
"name": "libpng16-16-1.6.34-150000.3.22.1.s390x",
"product_id": "libpng16-16-1.6.34-150000.3.22.1.s390x"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.s390x",
"product": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.s390x",
"product_id": "libpng16-compat-devel-1.6.34-150000.3.22.1.s390x"
}
},
{
"category": "product_version",
"name": "libpng16-devel-1.6.34-150000.3.22.1.s390x",
"product": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.s390x",
"product_id": "libpng16-devel-1.6.34-150000.3.22.1.s390x"
}
},
{
"category": "product_version",
"name": "libpng16-tools-1.6.34-150000.3.22.1.s390x",
"product": {
"name": "libpng16-tools-1.6.34-150000.3.22.1.s390x",
"product_id": "libpng16-tools-1.6.34-150000.3.22.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-1.6.34-150000.3.22.1.x86_64",
"product": {
"name": "libpng16-16-1.6.34-150000.3.22.1.x86_64",
"product_id": "libpng16-16-1.6.34-150000.3.22.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"product": {
"name": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"product_id": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"product": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"product_id": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-32bit-1.6.34-150000.3.22.1.x86_64",
"product": {
"name": "libpng16-compat-devel-32bit-1.6.34-150000.3.22.1.x86_64",
"product_id": "libpng16-compat-devel-32bit-1.6.34-150000.3.22.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"product": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"product_id": "libpng16-devel-1.6.34-150000.3.22.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-devel-32bit-1.6.34-150000.3.22.1.x86_64",
"product": {
"name": "libpng16-devel-32bit-1.6.34-150000.3.22.1.x86_64",
"product_id": "libpng16-devel-32bit-1.6.34-150000.3.22.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-tools-1.6.34-150000.3.22.1.x86_64",
"product": {
"name": "libpng16-tools-1.6.34-150000.3.22.1.x86_64",
"product_id": "libpng16-tools-1.6.34-150000.3.22.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Enterprise Micro 5.3",
"product": {
"name": "SUSE Linux Enterprise Micro 5.3",
"product_id": "SUSE Linux Enterprise Micro 5.3",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-micro:5.3"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Micro 5.4",
"product": {
"name": "SUSE Linux Enterprise Micro 5.4",
"product_id": "SUSE Linux Enterprise Micro 5.4",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-micro:5.4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Micro 5.5",
"product": {
"name": "SUSE Linux Enterprise Micro 5.5",
"product_id": "SUSE Linux Enterprise Micro 5.5",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-micro:5.5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc-espos:15:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc-ltss:15:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc-espos:15:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc-ltss:15:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 15 SP4-LTSS",
"product": {
"name": "SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles-ltss:15:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 15 SP5-LTSS",
"product": {
"name": "SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles-ltss:15:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:15:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:15:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Micro 5.2",
"product": {
"name": "SUSE Linux Enterprise Micro 5.2",
"product_id": "SUSE Linux Enterprise Micro 5.2",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse-microos:5.2"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise Micro 5.3",
"product_id": "SUSE Linux Enterprise Micro 5.3:libpng16-16-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.s390x as component of SUSE Linux Enterprise Micro 5.3",
"product_id": "SUSE Linux Enterprise Micro 5.3:libpng16-16-1.6.34-150000.3.22.1.s390x"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Micro 5.3",
"product_id": "SUSE Linux Enterprise Micro 5.3:libpng16-16-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise Micro 5.4",
"product_id": "SUSE Linux Enterprise Micro 5.4:libpng16-16-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.s390x as component of SUSE Linux Enterprise Micro 5.4",
"product_id": "SUSE Linux Enterprise Micro 5.4:libpng16-16-1.6.34-150000.3.22.1.s390x"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Micro 5.4",
"product_id": "SUSE Linux Enterprise Micro 5.4:libpng16-16-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise Micro 5.5",
"product_id": "SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.ppc64le as component of SUSE Linux Enterprise Micro 5.5",
"product_id": "SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.ppc64le"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.s390x as component of SUSE Linux Enterprise Micro 5.5",
"product_id": "SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.s390x"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Micro 5.5",
"product_id": "SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-16-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-16-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-16-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-16-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.ppc64le"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.s390x as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.s390x"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.s390x as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.s390x"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.ppc64le"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.s390x as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.s390x"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.ppc64le"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.s390x as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.s390x"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.s390x as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.s390x"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.ppc64le"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.s390x as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.s390x"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-16-1.6.34-150000.3.22.1.ppc64le"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-16-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-devel-1.6.34-150000.3.22.1.ppc64le"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-devel-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-16-1.6.34-150000.3.22.1.ppc64le"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-16-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-devel-1.6.34-150000.3.22.1.ppc64le"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-devel-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.aarch64 as component of SUSE Linux Enterprise Micro 5.2",
"product_id": "SUSE Linux Enterprise Micro 5.2:libpng16-16-1.6.34-150000.3.22.1.aarch64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.s390x as component of SUSE Linux Enterprise Micro 5.2",
"product_id": "SUSE Linux Enterprise Micro 5.2:libpng16-16-1.6.34-150000.3.22.1.s390x"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.34-150000.3.22.1.x86_64 as component of SUSE Linux Enterprise Micro 5.2",
"product_id": "SUSE Linux Enterprise Micro 5.2:libpng16-16-1.6.34-150000.3.22.1.x86_64"
},
"product_reference": "libpng16-16-1.6.34-150000.3.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.2"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33416",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-33416"
}
],
"notes": [
{
"category": "general",
"text": "LIBPNG is a reference library for use in applications that read, create, and manipulate PNG (Portable Network Graphics) raster image files. In versions 1.2.1 through 1.6.55, `png_set_tRNS` and `png_set_PLTE` each alias a heap-allocated buffer between `png_struct` and `png_info`, sharing a single allocation across two structs with independent lifetimes. The `trans_alpha` aliasing has been present since at least libpng 1.0, and the `palette` aliasing since at least 1.2.1. Both affect all prior release lines `png_set_tRNS` sets `png_ptr-\u003etrans_alpha = info_ptr-\u003etrans_alpha` (256-byte buffer) and `png_set_PLTE` sets `info_ptr-\u003epalette = png_ptr-\u003epalette` (768-byte buffer). In both cases, calling `png_free_data` (with `PNG_FREE_TRNS` or `PNG_FREE_PLTE`) frees the buffer through `info_ptr` while the corresponding `png_ptr` pointer remains dangling. Subsequent row-transform functions dereference and, in some code paths, write to the freed memory. A second call to `png_set_tRNS` or `png_set_PLTE` has the same effect, because both functions call `png_free_data` internally before reallocating the `info_ptr` buffer. Version 1.6.56 fixes the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.4:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.4:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Micro 5.4:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-devel-1.6.34-150000.3.22.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-33416",
"url": "https://www.suse.com/security/cve/CVE-2026-33416"
},
{
"category": "external",
"summary": "SUSE Bug 1260754 for CVE-2026-33416",
"url": "https://bugzilla.suse.com/1260754"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.4:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.4:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Micro 5.4:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-devel-1.6.34-150000.3.22.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.4:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.4:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Micro 5.4:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Micro 5.5:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP4-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.aarch64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.s390x",
"SUSE Linux Enterprise Server 15 SP5-LTSS:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:libpng16-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-16-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-16-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-16-32bit-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-compat-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-compat-devel-1.6.34-150000.3.22.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-devel-1.6.34-150000.3.22.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:libpng16-devel-1.6.34-150000.3.22.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-14T13:11:55Z",
"details": "important"
}
],
"title": "CVE-2026-33416"
}
]
}
SUSE-SU-2026:1368-1
Vulnerability from csaf_suse - Published: 2026-04-15 14:35 - Updated: 2026-04-15 14:35| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-compat-devel-32bit-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-devel-32bit-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-compat-devel-32bit-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-devel-32bit-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.x86_64 | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for libpng16",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for libpng16 fixes the following issues:\n\n- CVE-2026-33416: use-after-free via pointer aliasing in `png_set_tRNS` and `png_set_PLTE` can lead to arbitrary code\n execution (bsc#1260754).\n- CVE-2026-33636: out-of-bounds read/write in the palette expansion on ARM Neon can lead to information leak and\n crashes (bsc#1260755).\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2026-1368,SUSE-SLE-Module-Basesystem-15-SP7-2026-1368,SUSE-SLE-Product-SLES-15-SP6-LTSS-2026-1368,SUSE-SLE-Product-SLES_SAP-15-SP6-2026-1368,openSUSE-SLE-15.6-2026-1368",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2026_1368-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2026:1368-1",
"url": "https://www.suse.com/support/update/announcement/2026/suse-su-20261368-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2026:1368-1",
"url": "https://lists.suse.com/pipermail/sle-updates/2026-April/045549.html"
},
{
"category": "self",
"summary": "SUSE Bug 1260754",
"url": "https://bugzilla.suse.com/1260754"
},
{
"category": "self",
"summary": "SUSE Bug 1260755",
"url": "https://bugzilla.suse.com/1260755"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-33416 page",
"url": "https://www.suse.com/security/cve/CVE-2026-33416/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-33636 page",
"url": "https://www.suse.com/security/cve/CVE-2026-33636/"
}
],
"title": "Security update for libpng16",
"tracking": {
"current_release_date": "2026-04-15T14:35:26Z",
"generator": {
"date": "2026-04-15T14:35:26Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2026:1368-1",
"initial_release_date": "2026-04-15T14:35:26Z",
"revision_history": [
{
"date": "2026-04-15T14:35:26Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-1.6.40-150600.3.17.1.aarch64",
"product": {
"name": "libpng16-16-1.6.40-150600.3.17.1.aarch64",
"product_id": "libpng16-16-1.6.40-150600.3.17.1.aarch64"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"product": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"product_id": "libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64"
}
},
{
"category": "product_version",
"name": "libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"product": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"product_id": "libpng16-devel-1.6.40-150600.3.17.1.aarch64"
}
},
{
"category": "product_version",
"name": "libpng16-tools-1.6.40-150600.3.17.1.aarch64",
"product": {
"name": "libpng16-tools-1.6.40-150600.3.17.1.aarch64",
"product_id": "libpng16-tools-1.6.40-150600.3.17.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-64bit-1.6.40-150600.3.17.1.aarch64_ilp32",
"product": {
"name": "libpng16-16-64bit-1.6.40-150600.3.17.1.aarch64_ilp32",
"product_id": "libpng16-16-64bit-1.6.40-150600.3.17.1.aarch64_ilp32"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-64bit-1.6.40-150600.3.17.1.aarch64_ilp32",
"product": {
"name": "libpng16-compat-devel-64bit-1.6.40-150600.3.17.1.aarch64_ilp32",
"product_id": "libpng16-compat-devel-64bit-1.6.40-150600.3.17.1.aarch64_ilp32"
}
},
{
"category": "product_version",
"name": "libpng16-devel-64bit-1.6.40-150600.3.17.1.aarch64_ilp32",
"product": {
"name": "libpng16-devel-64bit-1.6.40-150600.3.17.1.aarch64_ilp32",
"product_id": "libpng16-devel-64bit-1.6.40-150600.3.17.1.aarch64_ilp32"
}
}
],
"category": "architecture",
"name": "aarch64_ilp32"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-1.6.40-150600.3.17.1.i586",
"product": {
"name": "libpng16-16-1.6.40-150600.3.17.1.i586",
"product_id": "libpng16-16-1.6.40-150600.3.17.1.i586"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.i586",
"product": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.i586",
"product_id": "libpng16-compat-devel-1.6.40-150600.3.17.1.i586"
}
},
{
"category": "product_version",
"name": "libpng16-devel-1.6.40-150600.3.17.1.i586",
"product": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.i586",
"product_id": "libpng16-devel-1.6.40-150600.3.17.1.i586"
}
},
{
"category": "product_version",
"name": "libpng16-tools-1.6.40-150600.3.17.1.i586",
"product": {
"name": "libpng16-tools-1.6.40-150600.3.17.1.i586",
"product_id": "libpng16-tools-1.6.40-150600.3.17.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"product": {
"name": "libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"product_id": "libpng16-16-1.6.40-150600.3.17.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"product": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"product_id": "libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"product": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"product_id": "libpng16-devel-1.6.40-150600.3.17.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libpng16-tools-1.6.40-150600.3.17.1.ppc64le",
"product": {
"name": "libpng16-tools-1.6.40-150600.3.17.1.ppc64le",
"product_id": "libpng16-tools-1.6.40-150600.3.17.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-1.6.40-150600.3.17.1.s390x",
"product": {
"name": "libpng16-16-1.6.40-150600.3.17.1.s390x",
"product_id": "libpng16-16-1.6.40-150600.3.17.1.s390x"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"product": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"product_id": "libpng16-compat-devel-1.6.40-150600.3.17.1.s390x"
}
},
{
"category": "product_version",
"name": "libpng16-devel-1.6.40-150600.3.17.1.s390x",
"product": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.s390x",
"product_id": "libpng16-devel-1.6.40-150600.3.17.1.s390x"
}
},
{
"category": "product_version",
"name": "libpng16-tools-1.6.40-150600.3.17.1.s390x",
"product": {
"name": "libpng16-tools-1.6.40-150600.3.17.1.s390x",
"product_id": "libpng16-tools-1.6.40-150600.3.17.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng16-16-1.6.40-150600.3.17.1.x86_64",
"product": {
"name": "libpng16-16-1.6.40-150600.3.17.1.x86_64",
"product_id": "libpng16-16-1.6.40-150600.3.17.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"product": {
"name": "libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"product_id": "libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"product": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"product_id": "libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-compat-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"product": {
"name": "libpng16-compat-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"product_id": "libpng16-compat-devel-32bit-1.6.40-150600.3.17.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"product": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"product_id": "libpng16-devel-1.6.40-150600.3.17.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"product": {
"name": "libpng16-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"product_id": "libpng16-devel-32bit-1.6.40-150600.3.17.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng16-tools-1.6.40-150600.3.17.1.x86_64",
"product": {
"name": "libpng16-tools-1.6.40-150600.3.17.1.x86_64",
"product_id": "libpng16-tools-1.6.40-150600.3.17.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Enterprise Module for Basesystem 15 SP7",
"product": {
"name": "SUSE Linux Enterprise Module for Basesystem 15 SP7",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP7",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-module-basesystem:15:sp7"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 15 SP6-LTSS",
"product": {
"name": "SUSE Linux Enterprise Server 15 SP6-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles-ltss:15:sp6"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP6",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP6",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:15:sp6"
}
}
},
{
"category": "product_name",
"name": "openSUSE Leap 15.6",
"product": {
"name": "openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:leap:15.6"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.40-150600.3.17.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP7",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.aarch64"
},
"product_reference": "libpng16-16-1.6.40-150600.3.17.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.40-150600.3.17.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP7",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.ppc64le"
},
"product_reference": "libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.40-150600.3.17.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP7",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.s390x"
},
"product_reference": "libpng16-16-1.6.40-150600.3.17.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.40-150600.3.17.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP7",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-16-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP7",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP7",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64"
},
"product_reference": "libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP7",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le"
},
"product_reference": "libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP7",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x"
},
"product_reference": "libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP7",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP7",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.aarch64"
},
"product_reference": "libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP7",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.ppc64le"
},
"product_reference": "libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP7",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.s390x"
},
"product_reference": "libpng16-devel-1.6.40-150600.3.17.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP7",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.40-150600.3.17.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.aarch64"
},
"product_reference": "libpng16-16-1.6.40-150600.3.17.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.40-150600.3.17.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.ppc64le"
},
"product_reference": "libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.40-150600.3.17.1.s390x as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.s390x"
},
"product_reference": "libpng16-16-1.6.40-150600.3.17.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.40-150600.3.17.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-16-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64"
},
"product_reference": "libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le"
},
"product_reference": "libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.s390x as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x"
},
"product_reference": "libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.aarch64"
},
"product_reference": "libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.ppc64le"
},
"product_reference": "libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.s390x as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.s390x"
},
"product_reference": "libpng16-devel-1.6.40-150600.3.17.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP6-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP6-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.40-150600.3.17.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.ppc64le"
},
"product_reference": "libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.40-150600.3.17.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-16-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le"
},
"product_reference": "libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le"
},
"product_reference": "libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.40-150600.3.17.1.aarch64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.aarch64"
},
"product_reference": "libpng16-16-1.6.40-150600.3.17.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.40-150600.3.17.1.ppc64le as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.ppc64le"
},
"product_reference": "libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.40-150600.3.17.1.s390x as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.s390x"
},
"product_reference": "libpng16-16-1.6.40-150600.3.17.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-1.6.40-150600.3.17.1.x86_64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-16-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64"
},
"product_reference": "libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le"
},
"product_reference": "libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.s390x as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x"
},
"product_reference": "libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-compat-devel-32bit-1.6.40-150600.3.17.1.x86_64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-compat-devel-32bit-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-compat-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.aarch64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.aarch64"
},
"product_reference": "libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.ppc64le as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le"
},
"product_reference": "libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.s390x as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.s390x"
},
"product_reference": "libpng16-devel-1.6.40-150600.3.17.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-1.6.40-150600.3.17.1.x86_64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-devel-32bit-1.6.40-150600.3.17.1.x86_64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-devel-32bit-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-tools-1.6.40-150600.3.17.1.aarch64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.aarch64"
},
"product_reference": "libpng16-tools-1.6.40-150600.3.17.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-tools-1.6.40-150600.3.17.1.ppc64le as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.ppc64le"
},
"product_reference": "libpng16-tools-1.6.40-150600.3.17.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-tools-1.6.40-150600.3.17.1.s390x as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.s390x"
},
"product_reference": "libpng16-tools-1.6.40-150600.3.17.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng16-tools-1.6.40-150600.3.17.1.x86_64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.x86_64"
},
"product_reference": "libpng16-tools-1.6.40-150600.3.17.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.6"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33416",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-33416"
}
],
"notes": [
{
"category": "general",
"text": "LIBPNG is a reference library for use in applications that read, create, and manipulate PNG (Portable Network Graphics) raster image files. In versions 1.2.1 through 1.6.55, `png_set_tRNS` and `png_set_PLTE` each alias a heap-allocated buffer between `png_struct` and `png_info`, sharing a single allocation across two structs with independent lifetimes. The `trans_alpha` aliasing has been present since at least libpng 1.0, and the `palette` aliasing since at least 1.2.1. Both affect all prior release lines `png_set_tRNS` sets `png_ptr-\u003etrans_alpha = info_ptr-\u003etrans_alpha` (256-byte buffer) and `png_set_PLTE` sets `info_ptr-\u003epalette = png_ptr-\u003epalette` (768-byte buffer). In both cases, calling `png_free_data` (with `PNG_FREE_TRNS` or `PNG_FREE_PLTE`) frees the buffer through `info_ptr` while the corresponding `png_ptr` pointer remains dangling. Subsequent row-transform functions dereference and, in some code paths, write to the freed memory. A second call to `png_set_tRNS` or `png_set_PLTE` has the same effect, because both functions call `png_free_data` internally before reallocating the `info_ptr` buffer. Version 1.6.56 fixes the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-compat-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-33416",
"url": "https://www.suse.com/security/cve/CVE-2026-33416"
},
{
"category": "external",
"summary": "SUSE Bug 1260754 for CVE-2026-33416",
"url": "https://bugzilla.suse.com/1260754"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-compat-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-compat-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-15T14:35:26Z",
"details": "important"
}
],
"title": "CVE-2026-33416"
},
{
"cve": "CVE-2026-33636",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-33636"
}
],
"notes": [
{
"category": "general",
"text": "LIBPNG is a reference library for use in applications that read, create, and manipulate PNG (Portable Network Graphics) raster image files. In versions 1.6.36 through 1.6.55, an out-of-bounds read and write exists in libpng\u0027s ARM/AArch64 Neon-optimized palette expansion path. When expanding 8-bit paletted rows to RGB or RGBA, the Neon loop processes a final partial chunk without verifying that enough input pixels remain. Because the implementation works backward from the end of the row, the final iteration dereferences pointers before the start of the row buffer (OOB read) and writes expanded pixel data to the same underflowed positions (OOB write). This is reachable via normal decoding of attacker-controlled PNG input if Neon is enabled. Version 1.6.56 fixes the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-compat-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-33636",
"url": "https://www.suse.com/security/cve/CVE-2026-33636"
},
{
"category": "external",
"summary": "SUSE Bug 1260755 for CVE-2026-33636",
"url": "https://bugzilla.suse.com/1260755"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-compat-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.6,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP7:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"SUSE Linux Enterprise Server 15 SP6-LTSS:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP6:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-16-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-16-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-compat-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-compat-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-devel-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-devel-32bit-1.6.40-150600.3.17.1.x86_64",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.aarch64",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.ppc64le",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.s390x",
"openSUSE Leap 15.6:libpng16-tools-1.6.40-150600.3.17.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-15T14:35:26Z",
"details": "important"
}
],
"title": "CVE-2026-33636"
}
]
}
SUSE-SU-2026:1500-1
Vulnerability from csaf_suse - Published: 2026-04-20 16:16 - Updated: 2026-04-20 16:16| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng15-15-1.5.22-10.10.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng15-15-1.5.22-10.10.1.x86_64 | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for libpng15",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for libpng15 fixes the following issues:\n\n- CVE-2026-34757: use-after-free in `png_set_PLTE`, `png_set_tRNS` and `png_set_hIST` can lead to information\n disclosure and data corruption (bsc#1261957).\n- CVE-2026-33416: use-after-free via pointer aliasing in `png_set_tRNS` and `png_set_PLTE` can lead to arbitrary code\n execution (bsc#1260754).\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2026-1500,SUSE-SLE-SERVER-12-SP5-LTSS-2026-1500,SUSE-SLE-SERVER-12-SP5-LTSS-EXTENDED-SECURITY-2026-1500",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2026_1500-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2026:1500-1",
"url": "https://www.suse.com/support/update/announcement/2026/suse-su-20261500-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2026:1500-1",
"url": "https://lists.suse.com/pipermail/sle-updates/2026-April/045722.html"
},
{
"category": "self",
"summary": "SUSE Bug 1260754",
"url": "https://bugzilla.suse.com/1260754"
},
{
"category": "self",
"summary": "SUSE Bug 1261957",
"url": "https://bugzilla.suse.com/1261957"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-33416 page",
"url": "https://www.suse.com/security/cve/CVE-2026-33416/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-34757 page",
"url": "https://www.suse.com/security/cve/CVE-2026-34757/"
}
],
"title": "Security update for libpng15",
"tracking": {
"current_release_date": "2026-04-20T16:16:39Z",
"generator": {
"date": "2026-04-20T16:16:39Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2026:1500-1",
"initial_release_date": "2026-04-20T16:16:39Z",
"revision_history": [
{
"date": "2026-04-20T16:16:39Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "libpng15-15-1.5.22-10.10.1.aarch64",
"product": {
"name": "libpng15-15-1.5.22-10.10.1.aarch64",
"product_id": "libpng15-15-1.5.22-10.10.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng15-15-64bit-1.5.22-10.10.1.aarch64_ilp32",
"product": {
"name": "libpng15-15-64bit-1.5.22-10.10.1.aarch64_ilp32",
"product_id": "libpng15-15-64bit-1.5.22-10.10.1.aarch64_ilp32"
}
}
],
"category": "architecture",
"name": "aarch64_ilp32"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng15-15-1.5.22-10.10.1.i586",
"product": {
"name": "libpng15-15-1.5.22-10.10.1.i586",
"product_id": "libpng15-15-1.5.22-10.10.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng15-15-1.5.22-10.10.1.ppc64le",
"product": {
"name": "libpng15-15-1.5.22-10.10.1.ppc64le",
"product_id": "libpng15-15-1.5.22-10.10.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng15-15-1.5.22-10.10.1.s390",
"product": {
"name": "libpng15-15-1.5.22-10.10.1.s390",
"product_id": "libpng15-15-1.5.22-10.10.1.s390"
}
}
],
"category": "architecture",
"name": "s390"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng15-15-1.5.22-10.10.1.s390x",
"product": {
"name": "libpng15-15-1.5.22-10.10.1.s390x",
"product_id": "libpng15-15-1.5.22-10.10.1.s390x"
}
},
{
"category": "product_version",
"name": "libpng15-15-32bit-1.5.22-10.10.1.s390x",
"product": {
"name": "libpng15-15-32bit-1.5.22-10.10.1.s390x",
"product_id": "libpng15-15-32bit-1.5.22-10.10.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "libpng15-15-1.5.22-10.10.1.x86_64",
"product": {
"name": "libpng15-15-1.5.22-10.10.1.x86_64",
"product_id": "libpng15-15-1.5.22-10.10.1.x86_64"
}
},
{
"category": "product_version",
"name": "libpng15-15-32bit-1.5.22-10.10.1.x86_64",
"product": {
"name": "libpng15-15-32bit-1.5.22-10.10.1.x86_64",
"product_id": "libpng15-15-32bit-1.5.22-10.10.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 12 SP5-LTSS",
"product": {
"name": "SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles-ltss:12:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server LTSS Extended Security 12 SP5",
"product": {
"name": "SUSE Linux Enterprise Server LTSS Extended Security 12 SP5",
"product_id": "SUSE Linux Enterprise Server LTSS Extended Security 12 SP5",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles-ltss-extended-security:12:sp5"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng15-15-1.5.22-10.10.1.aarch64 as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.aarch64"
},
"product_reference": "libpng15-15-1.5.22-10.10.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng15-15-1.5.22-10.10.1.ppc64le as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.ppc64le"
},
"product_reference": "libpng15-15-1.5.22-10.10.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng15-15-1.5.22-10.10.1.s390x as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.s390x"
},
"product_reference": "libpng15-15-1.5.22-10.10.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng15-15-1.5.22-10.10.1.x86_64 as component of SUSE Linux Enterprise Server 12 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.x86_64"
},
"product_reference": "libpng15-15-1.5.22-10.10.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libpng15-15-1.5.22-10.10.1.x86_64 as component of SUSE Linux Enterprise Server LTSS Extended Security 12 SP5",
"product_id": "SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng15-15-1.5.22-10.10.1.x86_64"
},
"product_reference": "libpng15-15-1.5.22-10.10.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server LTSS Extended Security 12 SP5"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33416",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-33416"
}
],
"notes": [
{
"category": "general",
"text": "LIBPNG is a reference library for use in applications that read, create, and manipulate PNG (Portable Network Graphics) raster image files. In versions 1.2.1 through 1.6.55, `png_set_tRNS` and `png_set_PLTE` each alias a heap-allocated buffer between `png_struct` and `png_info`, sharing a single allocation across two structs with independent lifetimes. The `trans_alpha` aliasing has been present since at least libpng 1.0, and the `palette` aliasing since at least 1.2.1. Both affect all prior release lines `png_set_tRNS` sets `png_ptr-\u003etrans_alpha = info_ptr-\u003etrans_alpha` (256-byte buffer) and `png_set_PLTE` sets `info_ptr-\u003epalette = png_ptr-\u003epalette` (768-byte buffer). In both cases, calling `png_free_data` (with `PNG_FREE_TRNS` or `PNG_FREE_PLTE`) frees the buffer through `info_ptr` while the corresponding `png_ptr` pointer remains dangling. Subsequent row-transform functions dereference and, in some code paths, write to the freed memory. A second call to `png_set_tRNS` or `png_set_PLTE` has the same effect, because both functions call `png_free_data` internally before reallocating the `info_ptr` buffer. Version 1.6.56 fixes the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng15-15-1.5.22-10.10.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-33416",
"url": "https://www.suse.com/security/cve/CVE-2026-33416"
},
{
"category": "external",
"summary": "SUSE Bug 1260754 for CVE-2026-33416",
"url": "https://bugzilla.suse.com/1260754"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng15-15-1.5.22-10.10.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng15-15-1.5.22-10.10.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-20T16:16:39Z",
"details": "important"
}
],
"title": "CVE-2026-33416"
},
{
"cve": "CVE-2026-34757",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-34757"
}
],
"notes": [
{
"category": "general",
"text": "LIBPNG is a reference library for use in applications that read, create, and manipulate PNG (Portable Network Graphics) raster image files. From 1.0.9 to before 1.6.57, passing a pointer obtained from png_get_PLTE, png_get_tRNS, or png_get_hIST back into the corresponding setter on the same png_struct/png_info pair causes the setter to read from freed memory and copy its contents into the replacement buffer. The setter frees the internal buffer before copying from the caller-supplied pointer, which now dangles. The freed region may contain stale data (producing silently corrupted chunk metadata) or data from subsequent heap allocations (leaking unrelated heap contents into the chunk struct). This vulnerability is fixed in 1.6.57.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng15-15-1.5.22-10.10.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-34757",
"url": "https://www.suse.com/security/cve/CVE-2026-34757"
},
{
"category": "external",
"summary": "SUSE Bug 1261957 for CVE-2026-34757",
"url": "https://bugzilla.suse.com/1261957"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng15-15-1.5.22-10.10.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.1,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.s390x",
"SUSE Linux Enterprise Server 12 SP5-LTSS:libpng15-15-1.5.22-10.10.1.x86_64",
"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:libpng15-15-1.5.22-10.10.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-20T16:16:39Z",
"details": "moderate"
}
],
"title": "CVE-2026-34757"
}
]
}
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.