Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-0861 (GCVE-0-2026-0861)
Vulnerability from cvelistv5 – Published: 2026-01-14 21:01 – Updated: 2026-04-29 13:28
VLAI
EPSS
Title
Integer overflow in memalign leads to heap corruption
Summary
Passing too large an alignment to the memalign suite of functions (memalign, posix_memalign, aligned_alloc) in the GNU C Library version 2.30 to 2.42 may result in an integer overflow, which could consequently result in a heap corruption.
Note that the attacker must have control over both, the size as well as the alignment arguments of the memalign function to be able to exploit this. The size parameter must be close enough to PTRDIFF_MAX so as to overflow size_t along with the large alignment argument. This limits the malicious inputs for the alignment for memalign to the range [1<<62+ 1, 1<<63] and exactly 1<<63 for posix_memalign and aligned_alloc.
Typically the alignment argument passed to such functions is a known constrained quantity (e.g. page size, block size, struct sizes) and is not attacker controlled, because of which this may not be easily exploitable in practice. An application bug could potentially result in the input alignment being too large, e.g. due to a different buffer overflow or integer overflow in the application or its dependent libraries, but that is again an uncommon usage pattern given typical sources of alignments.
Severity
8.4 (High)
SSVC
Exploitation: none
Automatable: no
Technical Impact: total
CISA Coordinator (v2.0.3)
CWE
- CWE-190 - Integer Overflow or Wraparound
Assigner
References
Impacted products
1 product
| Vendor | Product | Version | |
|---|---|---|---|
| The GNU C Library | glibc |
Affected:
2.30 , ≤ 2.42
(custom)
|
Date Public
2026-01-14 05:00
Credits
Igor Morgenstern, Aisle Research
{
"containers": {
"adp": [
{
"metrics": [
{
"cvssV3_1": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 8.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
}
},
{
"other": {
"content": {
"id": "CVE-2026-0861",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "no"
},
{
"Technical Impact": "total"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-04-29T03:55:55.254366Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"providerMetadata": {
"dateUpdated": "2026-04-29T13:28:15.670Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
},
{
"providerMetadata": {
"dateUpdated": "2026-01-16T17:06:42.010Z",
"orgId": "af854a3a-2127-422b-91ae-364da2661108",
"shortName": "CVE"
},
"references": [
{
"url": "http://www.openwall.com/lists/oss-security/2026/01/16/5"
}
],
"title": "CVE Program Container"
}
],
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "glibc",
"vendor": "The GNU C Library",
"versions": [
{
"lessThanOrEqual": "2.42",
"status": "affected",
"version": "2.30",
"versionType": "custom"
}
]
}
],
"credits": [
{
"lang": "en",
"type": "finder",
"value": "Igor Morgenstern, Aisle Research"
}
],
"datePublic": "2026-01-14T05:00:00.000Z",
"descriptions": [
{
"lang": "en",
"supportingMedia": [
{
"base64": false,
"type": "text/html",
"value": "Passing too large an alignment to the memalign suite of functions (memalign, posix_memalign, aligned_alloc) in the GNU C Library version 2.30 to 2.42 may result in an integer overflow, which could consequently result in a heap corruption.\u003cbr\u003e\u003cbr\u003eNote that the attacker must have control over both, the size as well as the alignment arguments of the memalign function to be able to exploit this. The size parameter must be close enough to PTRDIFF_MAX so as to overflow size_t along with the large alignment argument. This limits the malicious inputs for the alignment for memalign to the range [1\u0026lt;\u0026lt;62+ 1, 1\u0026lt;\u0026lt;63] and exactly 1\u0026lt;\u0026lt;63 for posix_memalign and aligned_alloc.\u003cbr\u003e\u003cbr\u003eTypically the alignment argument passed to such functions is a known constrained quantity (e.g. page size, block size, struct sizes) and is not attacker controlled, because of which this may not be easily exploitable in practice. An application bug could potentially result in the input alignment being too large, e.g. due to a different buffer overflow or integer overflow in the application or its dependent libraries, but that is again an uncommon usage pattern given typical sources of alignments."
}
],
"value": "Passing too large an alignment to the memalign suite of functions (memalign, posix_memalign, aligned_alloc) in the GNU C Library version 2.30 to 2.42 may result in an integer overflow, which could consequently result in a heap corruption.\n\nNote that the attacker must have control over both, the size as well as the alignment arguments of the memalign function to be able to exploit this. The size parameter must be close enough to PTRDIFF_MAX so as to overflow size_t along with the large alignment argument. This limits the malicious inputs for the alignment for memalign to the range [1\u003c\u003c62+ 1, 1\u003c\u003c63] and exactly 1\u003c\u003c63 for posix_memalign and aligned_alloc.\n\nTypically the alignment argument passed to such functions is a known constrained quantity (e.g. page size, block size, struct sizes) and is not attacker controlled, because of which this may not be easily exploitable in practice. An application bug could potentially result in the input alignment being too large, e.g. due to a different buffer overflow or integer overflow in the application or its dependent libraries, but that is again an uncommon usage pattern given typical sources of alignments."
}
],
"impacts": [
{
"capecId": "CAPEC-129",
"descriptions": [
{
"lang": "en",
"value": "CAPEC-129 Pointer Manipulation"
}
]
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-190",
"description": "CWE-190 Integer Overflow or Wraparound",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-01-16T14:37:33.544Z",
"orgId": "3ff69d7a-14f2-4f67-a097-88dee7810d18",
"shortName": "glibc"
},
"references": [
{
"url": "https://sourceware.org/bugzilla/show_bug.cgi?id=33796"
},
{
"url": "https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=advisories/GLIBC-SA-2026-0001"
}
],
"source": {
"discovery": "UNKNOWN"
},
"title": "Integer overflow in memalign leads to heap corruption",
"x_generator": {
"engine": "Vulnogram 0.5.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "3ff69d7a-14f2-4f67-a097-88dee7810d18",
"assignerShortName": "glibc",
"cveId": "CVE-2026-0861",
"datePublished": "2026-01-14T21:01:11.037Z",
"dateReserved": "2026-01-12T14:35:11.285Z",
"dateUpdated": "2026-04-29T13:28:15.670Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2026-0861",
"date": "2026-06-09",
"epss": "0.00012",
"percentile": "0.01788"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2026-0861\",\"sourceIdentifier\":\"3ff69d7a-14f2-4f67-a097-88dee7810d18\",\"published\":\"2026-01-14T21:15:52.617\",\"lastModified\":\"2026-02-03T18:26:25.390\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"Passing too large an alignment to the memalign suite of functions (memalign, posix_memalign, aligned_alloc) in the GNU C Library version 2.30 to 2.42 may result in an integer overflow, which could consequently result in a heap corruption.\\n\\nNote that the attacker must have control over both, the size as well as the alignment arguments of the memalign function to be able to exploit this. The size parameter must be close enough to PTRDIFF_MAX so as to overflow size_t along with the large alignment argument. This limits the malicious inputs for the alignment for memalign to the range [1\u003c\u003c62+ 1, 1\u003c\u003c63] and exactly 1\u003c\u003c63 for posix_memalign and aligned_alloc.\\n\\nTypically the alignment argument passed to such functions is a known constrained quantity (e.g. page size, block size, struct sizes) and is not attacker controlled, because of which this may not be easily exploitable in practice. An application bug could potentially result in the input alignment being too large, e.g. due to a different buffer overflow or integer overflow in the application or its dependent libraries, but that is again an uncommon usage pattern given typical sources of alignments.\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H\",\"baseScore\":8.4,\"baseSeverity\":\"HIGH\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":2.5,\"impactScore\":5.9}]},\"weaknesses\":[{\"source\":\"3ff69d7a-14f2-4f67-a097-88dee7810d18\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-190\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:gnu:glibc:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"2.30\",\"versionEndIncluding\":\"2.42\",\"matchCriteriaId\":\"695F54F4-F00E-4777-BFA3-CA09D169D050\"}]}]}],\"references\":[{\"url\":\"https://sourceware.org/bugzilla/show_bug.cgi?id=33796\",\"source\":\"3ff69d7a-14f2-4f67-a097-88dee7810d18\",\"tags\":[\"Exploit\"]},{\"url\":\"https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=advisories/GLIBC-SA-2026-0001\",\"source\":\"3ff69d7a-14f2-4f67-a097-88dee7810d18\",\"tags\":[\"Patch\"]},{\"url\":\"http://www.openwall.com/lists/oss-security/2026/01/16/5\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Mailing List\",\"Patch\"]}]}}",
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CVE Program Container\", \"references\": [{\"url\": \"http://www.openwall.com/lists/oss-security/2026/01/16/5\"}], \"providerMetadata\": {\"orgId\": \"af854a3a-2127-422b-91ae-364da2661108\", \"shortName\": \"CVE\", \"dateUpdated\": \"2026-01-16T17:06:42.010Z\"}}, {\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 8.4, \"attackVector\": \"LOCAL\", \"baseSeverity\": \"HIGH\", \"vectorString\": \"CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H\", \"integrityImpact\": \"HIGH\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"LOW\", \"availabilityImpact\": \"HIGH\", \"privilegesRequired\": \"NONE\", \"confidentialityImpact\": \"HIGH\"}}, {\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2026-0861\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"no\"}, {\"Technical Impact\": \"total\"}], \"version\": \"2.0.3\", \"timestamp\": \"2026-04-29T03:55:55.254366Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2026-01-14T21:25:28.506Z\"}}], \"cna\": {\"title\": \"Integer overflow in memalign leads to heap corruption\", \"source\": {\"discovery\": \"UNKNOWN\"}, \"credits\": [{\"lang\": \"en\", \"type\": \"finder\", \"value\": \"Igor Morgenstern, Aisle Research\"}], \"impacts\": [{\"capecId\": \"CAPEC-129\", \"descriptions\": [{\"lang\": \"en\", \"value\": \"CAPEC-129 Pointer Manipulation\"}]}], \"affected\": [{\"vendor\": \"The GNU C Library\", \"product\": \"glibc\", \"versions\": [{\"status\": \"affected\", \"version\": \"2.30\", \"versionType\": \"custom\", \"lessThanOrEqual\": \"2.42\"}], \"defaultStatus\": \"unaffected\"}], \"datePublic\": \"2026-01-14T05:00:00.000Z\", \"references\": [{\"url\": \"https://sourceware.org/bugzilla/show_bug.cgi?id=33796\"}, {\"url\": \"https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=advisories/GLIBC-SA-2026-0001\"}], \"x_generator\": {\"engine\": \"Vulnogram 0.5.0\"}, \"descriptions\": [{\"lang\": \"en\", \"value\": \"Passing too large an alignment to the memalign suite of functions (memalign, posix_memalign, aligned_alloc) in the GNU C Library version 2.30 to 2.42 may result in an integer overflow, which could consequently result in a heap corruption.\\n\\nNote that the attacker must have control over both, the size as well as the alignment arguments of the memalign function to be able to exploit this. The size parameter must be close enough to PTRDIFF_MAX so as to overflow size_t along with the large alignment argument. This limits the malicious inputs for the alignment for memalign to the range [1\u003c\u003c62+ 1, 1\u003c\u003c63] and exactly 1\u003c\u003c63 for posix_memalign and aligned_alloc.\\n\\nTypically the alignment argument passed to such functions is a known constrained quantity (e.g. page size, block size, struct sizes) and is not attacker controlled, because of which this may not be easily exploitable in practice. An application bug could potentially result in the input alignment being too large, e.g. due to a different buffer overflow or integer overflow in the application or its dependent libraries, but that is again an uncommon usage pattern given typical sources of alignments.\", \"supportingMedia\": [{\"type\": \"text/html\", \"value\": \"Passing too large an alignment to the memalign suite of functions (memalign, posix_memalign, aligned_alloc) in the GNU C Library version 2.30 to 2.42 may result in an integer overflow, which could consequently result in a heap corruption.\u003cbr\u003e\u003cbr\u003eNote that the attacker must have control over both, the size as well as the alignment arguments of the memalign function to be able to exploit this. The size parameter must be close enough to PTRDIFF_MAX so as to overflow size_t along with the large alignment argument. This limits the malicious inputs for the alignment for memalign to the range [1\u0026lt;\u0026lt;62+ 1, 1\u0026lt;\u0026lt;63] and exactly 1\u0026lt;\u0026lt;63 for posix_memalign and aligned_alloc.\u003cbr\u003e\u003cbr\u003eTypically the alignment argument passed to such functions is a known constrained quantity (e.g. page size, block size, struct sizes) and is not attacker controlled, because of which this may not be easily exploitable in practice. An application bug could potentially result in the input alignment being too large, e.g. due to a different buffer overflow or integer overflow in the application or its dependent libraries, but that is again an uncommon usage pattern given typical sources of alignments.\", \"base64\": false}]}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-190\", \"description\": \"CWE-190 Integer Overflow or Wraparound\"}]}], \"providerMetadata\": {\"orgId\": \"3ff69d7a-14f2-4f67-a097-88dee7810d18\", \"shortName\": \"glibc\", \"dateUpdated\": \"2026-01-16T14:37:33.544Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2026-0861\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2026-04-29T13:28:15.670Z\", \"dateReserved\": \"2026-01-12T14:35:11.285Z\", \"assignerOrgId\": \"3ff69d7a-14f2-4f67-a097-88dee7810d18\", \"datePublished\": \"2026-01-14T21:01:11.037Z\", \"assignerShortName\": \"glibc\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
SUSE-SU-2026:20527-1
Vulnerability from csaf_suse - Published: 2026-02-26 11:33 - Updated: 2026-02-26 11:33Summary
Security update for glibc
Severity
Important
Notes
Title of the patch: Security update for glibc
Description of the patch: This update for glibc fixes the following issues:
- CVE-2026-0861: inadequate size check in the memalign suite may result in an integer overflow (bsc#1256766).
- CVE-2026-0915: uninitialized stack buffer used as DNS query name when net==0 in _nss_dns_getnetbyaddr_r (bsc#1256822).
- CVE-2025-15281: uninitialized memory may cause the process abort (bsc#1257005).
- CVE-2025-8058: a malloc failure in regcomp function can lead to a double free (bsc#1246965).
Patchnames: SUSE-SLE-Micro-6.0-597
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
5.5 (Medium)
Affected products
Recommended
12 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-2.38-11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-2.38-11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-2.38-11.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
6.6 (Medium)
Affected products
Recommended
12 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-2.38-11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-2.38-11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-2.38-11.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
7.8 (High)
Affected products
Recommended
12 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-2.38-11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-2.38-11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-2.38-11.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
5.3 (Medium)
Affected products
Recommended
12 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-2.38-11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-2.38-11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-2.38-11.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
References
21 references
{
"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 glibc",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for glibc fixes the following issues:\n\n- CVE-2026-0861: inadequate size check in the memalign suite may result in an integer overflow (bsc#1256766).\n- CVE-2026-0915: uninitialized stack buffer used as DNS query name when net==0 in _nss_dns_getnetbyaddr_r (bsc#1256822).\n- CVE-2025-15281: uninitialized memory may cause the process abort (bsc#1257005).\n- CVE-2025-8058: a malloc failure in regcomp function can lead to a double free (bsc#1246965).\n\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-SLE-Micro-6.0-597",
"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_20527-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2026:20527-1",
"url": "https://www.suse.com/support/update/announcement/2026/suse-su-202620527-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2026:20527-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024495.html"
},
{
"category": "self",
"summary": "SUSE Bug 1246965",
"url": "https://bugzilla.suse.com/1246965"
},
{
"category": "self",
"summary": "SUSE Bug 1256766",
"url": "https://bugzilla.suse.com/1256766"
},
{
"category": "self",
"summary": "SUSE Bug 1256822",
"url": "https://bugzilla.suse.com/1256822"
},
{
"category": "self",
"summary": "SUSE Bug 1257005",
"url": "https://bugzilla.suse.com/1257005"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-15281 page",
"url": "https://www.suse.com/security/cve/CVE-2025-15281/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-8058 page",
"url": "https://www.suse.com/security/cve/CVE-2025-8058/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-0861 page",
"url": "https://www.suse.com/security/cve/CVE-2026-0861/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-0915 page",
"url": "https://www.suse.com/security/cve/CVE-2026-0915/"
}
],
"title": "Security update for glibc",
"tracking": {
"current_release_date": "2026-02-26T11:33:53Z",
"generator": {
"date": "2026-02-26T11:33:53Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2026:20527-1",
"initial_release_date": "2026-02-26T11:33:53Z",
"revision_history": [
{
"date": "2026-02-26T11:33:53Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "glibc-2.38-11.1.aarch64",
"product": {
"name": "glibc-2.38-11.1.aarch64",
"product_id": "glibc-2.38-11.1.aarch64"
}
},
{
"category": "product_version",
"name": "glibc-devel-2.38-11.1.aarch64",
"product": {
"name": "glibc-devel-2.38-11.1.aarch64",
"product_id": "glibc-devel-2.38-11.1.aarch64"
}
},
{
"category": "product_version",
"name": "glibc-locale-2.38-11.1.aarch64",
"product": {
"name": "glibc-locale-2.38-11.1.aarch64",
"product_id": "glibc-locale-2.38-11.1.aarch64"
}
},
{
"category": "product_version",
"name": "glibc-locale-base-2.38-11.1.aarch64",
"product": {
"name": "glibc-locale-base-2.38-11.1.aarch64",
"product_id": "glibc-locale-base-2.38-11.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "glibc-2.38-11.1.s390x",
"product": {
"name": "glibc-2.38-11.1.s390x",
"product_id": "glibc-2.38-11.1.s390x"
}
},
{
"category": "product_version",
"name": "glibc-devel-2.38-11.1.s390x",
"product": {
"name": "glibc-devel-2.38-11.1.s390x",
"product_id": "glibc-devel-2.38-11.1.s390x"
}
},
{
"category": "product_version",
"name": "glibc-locale-2.38-11.1.s390x",
"product": {
"name": "glibc-locale-2.38-11.1.s390x",
"product_id": "glibc-locale-2.38-11.1.s390x"
}
},
{
"category": "product_version",
"name": "glibc-locale-base-2.38-11.1.s390x",
"product": {
"name": "glibc-locale-base-2.38-11.1.s390x",
"product_id": "glibc-locale-base-2.38-11.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "glibc-2.38-11.1.x86_64",
"product": {
"name": "glibc-2.38-11.1.x86_64",
"product_id": "glibc-2.38-11.1.x86_64"
}
},
{
"category": "product_version",
"name": "glibc-devel-2.38-11.1.x86_64",
"product": {
"name": "glibc-devel-2.38-11.1.x86_64",
"product_id": "glibc-devel-2.38-11.1.x86_64"
}
},
{
"category": "product_version",
"name": "glibc-locale-2.38-11.1.x86_64",
"product": {
"name": "glibc-locale-2.38-11.1.x86_64",
"product_id": "glibc-locale-2.38-11.1.x86_64"
}
},
{
"category": "product_version",
"name": "glibc-locale-base-2.38-11.1.x86_64",
"product": {
"name": "glibc-locale-base-2.38-11.1.x86_64",
"product_id": "glibc-locale-base-2.38-11.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Micro 6.0",
"product": {
"name": "SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sl-micro:6.0"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-2.38-11.1.aarch64 as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:glibc-2.38-11.1.aarch64"
},
"product_reference": "glibc-2.38-11.1.aarch64",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-2.38-11.1.s390x as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:glibc-2.38-11.1.s390x"
},
"product_reference": "glibc-2.38-11.1.s390x",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-2.38-11.1.x86_64 as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:glibc-2.38-11.1.x86_64"
},
"product_reference": "glibc-2.38-11.1.x86_64",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-devel-2.38-11.1.aarch64 as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.aarch64"
},
"product_reference": "glibc-devel-2.38-11.1.aarch64",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-devel-2.38-11.1.s390x as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.s390x"
},
"product_reference": "glibc-devel-2.38-11.1.s390x",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-devel-2.38-11.1.x86_64 as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.x86_64"
},
"product_reference": "glibc-devel-2.38-11.1.x86_64",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-locale-2.38-11.1.aarch64 as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.aarch64"
},
"product_reference": "glibc-locale-2.38-11.1.aarch64",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-locale-2.38-11.1.s390x as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.s390x"
},
"product_reference": "glibc-locale-2.38-11.1.s390x",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-locale-2.38-11.1.x86_64 as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.x86_64"
},
"product_reference": "glibc-locale-2.38-11.1.x86_64",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-locale-base-2.38-11.1.aarch64 as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.aarch64"
},
"product_reference": "glibc-locale-base-2.38-11.1.aarch64",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-locale-base-2.38-11.1.s390x as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.s390x"
},
"product_reference": "glibc-locale-base-2.38-11.1.s390x",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-locale-base-2.38-11.1.x86_64 as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.x86_64"
},
"product_reference": "glibc-locale-base-2.38-11.1.x86_64",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-15281",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-15281"
}
],
"notes": [
{
"category": "general",
"text": "Calling wordexp with WRDE_REUSE in conjunction with WRDE_APPEND in the GNU C Library version 2.0 to version 2.42 may cause the interface to return uninitialized memory in the we_wordv member, which on subsequent calls to wordfree may abort the process.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.0:glibc-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-15281",
"url": "https://www.suse.com/security/cve/CVE-2025-15281"
},
{
"category": "external",
"summary": "SUSE Bug 1257005 for CVE-2025-15281",
"url": "https://bugzilla.suse.com/1257005"
}
],
"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 Micro 6.0:glibc-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.0:glibc-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-26T11:33:53Z",
"details": "moderate"
}
],
"title": "CVE-2025-15281"
},
{
"cve": "CVE-2025-8058",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-8058"
}
],
"notes": [
{
"category": "general",
"text": "The regcomp function in the GNU C library version from 2.4 to 2.41 is \nsubject to a double free if some previous allocation fails. It can be \naccomplished either by a malloc failure or by using an interposed malloc\n that injects random malloc failures. The double free can allow buffer \nmanipulation depending of how the regex is constructed. This issue \naffects all architectures and ABIs supported by the GNU C library.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.0:glibc-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-8058",
"url": "https://www.suse.com/security/cve/CVE-2025-8058"
},
{
"category": "external",
"summary": "SUSE Bug 1246965 for CVE-2025-8058",
"url": "https://bugzilla.suse.com/1246965"
}
],
"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 Micro 6.0:glibc-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.6,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:C/C:L/I:L/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.0:glibc-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-26T11:33:53Z",
"details": "moderate"
}
],
"title": "CVE-2025-8058"
},
{
"cve": "CVE-2026-0861",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-0861"
}
],
"notes": [
{
"category": "general",
"text": "Passing too large an alignment to the memalign suite of functions (memalign, posix_memalign, aligned_alloc) in the GNU C Library version 2.30 to 2.42 may result in an integer overflow, which could consequently result in a heap corruption.\n\nNote that the attacker must have control over both, the size as well as the alignment arguments of the memalign function to be able to exploit this. The size parameter must be close enough to PTRDIFF_MAX so as to overflow size_t along with the large alignment argument. This limits the malicious inputs for the alignment for memalign to the range [1\u003c\u003c62+ 1, 1\u003c\u003c63] and exactly 1\u003c\u003c63 for posix_memalign and aligned_alloc.\n\nTypically the alignment argument passed to such functions is a known constrained quantity (e.g. page size, block size, struct sizes) and is not attacker controlled, because of which this may not be easily exploitable in practice. An application bug could potentially result in the input alignment being too large, e.g. due to a different buffer overflow or integer overflow in the application or its dependent libraries, but that is again an uncommon usage pattern given typical sources of alignments.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.0:glibc-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-0861",
"url": "https://www.suse.com/security/cve/CVE-2026-0861"
},
{
"category": "external",
"summary": "SUSE Bug 1256766 for CVE-2026-0861",
"url": "https://bugzilla.suse.com/1256766"
},
{
"category": "external",
"summary": "SUSE Bug 1256913 for CVE-2026-0861",
"url": "https://bugzilla.suse.com/1256913"
}
],
"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 Micro 6.0:glibc-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.0:glibc-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-26T11:33:53Z",
"details": "important"
}
],
"title": "CVE-2026-0861"
},
{
"cve": "CVE-2026-0915",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-0915"
}
],
"notes": [
{
"category": "general",
"text": "Calling getnetbyaddr or getnetbyaddr_r with a configured nsswitch.conf that specifies the library\u0027s DNS backend for networks and queries for a zero-valued network in the GNU C Library version 2.0 to version 2.42 can leak stack contents to the configured DNS resolver.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.0:glibc-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-0915",
"url": "https://www.suse.com/security/cve/CVE-2026-0915"
},
{
"category": "external",
"summary": "SUSE Bug 1256822 for CVE-2026-0915",
"url": "https://bugzilla.suse.com/1256822"
}
],
"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 Micro 6.0:glibc-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.0:glibc-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-devel-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-2.38-11.1.x86_64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.aarch64",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.s390x",
"SUSE Linux Micro 6.0:glibc-locale-base-2.38-11.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-26T11:33:53Z",
"details": "moderate"
}
],
"title": "CVE-2026-0915"
}
]
}
SUSE-SU-2026:20536-1
Vulnerability from csaf_suse - Published: 2026-03-02 14:49 - Updated: 2026-03-02 14:49Summary
Security update for glibc
Severity
Important
Notes
Title of the patch: Security update for glibc
Description of the patch: This update for glibc fixes the following issues:
- CVE-2026-0861: inadequate size check in the memalign suite may result in an integer overflow (bsc#1256766).
- CVE-2026-0915: uninitialized stack buffer used as DNS query name when net==0 in _nss_dns_getnetbyaddr_r (bsc#1256822).
- CVE-2025-15281: uninitialized memory may cause the process abort (bsc#1257005).
- CVE-2025-8058: a malloc failure in regcomp function can lead to a double free (bsc#1246965).
Patchnames: SUSE-SLE-Micro-6.1-417
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
5.5 (Medium)
Affected products
Recommended
16 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
6.6 (Medium)
Affected products
Recommended
16 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
7.8 (High)
Affected products
Recommended
16 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
5.3 (Medium)
Affected products
Recommended
16 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
References
21 references
{
"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 glibc",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for glibc fixes the following issues:\n\n- CVE-2026-0861: inadequate size check in the memalign suite may result in an integer overflow (bsc#1256766).\n- CVE-2026-0915: uninitialized stack buffer used as DNS query name when net==0 in _nss_dns_getnetbyaddr_r (bsc#1256822).\n- CVE-2025-15281: uninitialized memory may cause the process abort (bsc#1257005).\n- CVE-2025-8058: a malloc failure in regcomp function can lead to a double free (bsc#1246965).\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-SLE-Micro-6.1-417",
"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_20536-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2026:20536-1",
"url": "https://www.suse.com/support/update/announcement/2026/suse-su-202620536-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2026:20536-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024559.html"
},
{
"category": "self",
"summary": "SUSE Bug 1246965",
"url": "https://bugzilla.suse.com/1246965"
},
{
"category": "self",
"summary": "SUSE Bug 1256766",
"url": "https://bugzilla.suse.com/1256766"
},
{
"category": "self",
"summary": "SUSE Bug 1256822",
"url": "https://bugzilla.suse.com/1256822"
},
{
"category": "self",
"summary": "SUSE Bug 1257005",
"url": "https://bugzilla.suse.com/1257005"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-15281 page",
"url": "https://www.suse.com/security/cve/CVE-2025-15281/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-8058 page",
"url": "https://www.suse.com/security/cve/CVE-2025-8058/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-0861 page",
"url": "https://www.suse.com/security/cve/CVE-2026-0861/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-0915 page",
"url": "https://www.suse.com/security/cve/CVE-2026-0915/"
}
],
"title": "Security update for glibc",
"tracking": {
"current_release_date": "2026-03-02T14:49:34Z",
"generator": {
"date": "2026-03-02T14:49:34Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2026:20536-1",
"initial_release_date": "2026-03-02T14:49:34Z",
"revision_history": [
{
"date": "2026-03-02T14:49:34Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "glibc-2.38-slfo.1.1_6.1.aarch64",
"product": {
"name": "glibc-2.38-slfo.1.1_6.1.aarch64",
"product_id": "glibc-2.38-slfo.1.1_6.1.aarch64"
}
},
{
"category": "product_version",
"name": "glibc-devel-2.38-slfo.1.1_6.1.aarch64",
"product": {
"name": "glibc-devel-2.38-slfo.1.1_6.1.aarch64",
"product_id": "glibc-devel-2.38-slfo.1.1_6.1.aarch64"
}
},
{
"category": "product_version",
"name": "glibc-locale-2.38-slfo.1.1_6.1.aarch64",
"product": {
"name": "glibc-locale-2.38-slfo.1.1_6.1.aarch64",
"product_id": "glibc-locale-2.38-slfo.1.1_6.1.aarch64"
}
},
{
"category": "product_version",
"name": "glibc-locale-base-2.38-slfo.1.1_6.1.aarch64",
"product": {
"name": "glibc-locale-base-2.38-slfo.1.1_6.1.aarch64",
"product_id": "glibc-locale-base-2.38-slfo.1.1_6.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "glibc-2.38-slfo.1.1_6.1.ppc64le",
"product": {
"name": "glibc-2.38-slfo.1.1_6.1.ppc64le",
"product_id": "glibc-2.38-slfo.1.1_6.1.ppc64le"
}
},
{
"category": "product_version",
"name": "glibc-devel-2.38-slfo.1.1_6.1.ppc64le",
"product": {
"name": "glibc-devel-2.38-slfo.1.1_6.1.ppc64le",
"product_id": "glibc-devel-2.38-slfo.1.1_6.1.ppc64le"
}
},
{
"category": "product_version",
"name": "glibc-locale-2.38-slfo.1.1_6.1.ppc64le",
"product": {
"name": "glibc-locale-2.38-slfo.1.1_6.1.ppc64le",
"product_id": "glibc-locale-2.38-slfo.1.1_6.1.ppc64le"
}
},
{
"category": "product_version",
"name": "glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le",
"product": {
"name": "glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le",
"product_id": "glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "glibc-2.38-slfo.1.1_6.1.s390x",
"product": {
"name": "glibc-2.38-slfo.1.1_6.1.s390x",
"product_id": "glibc-2.38-slfo.1.1_6.1.s390x"
}
},
{
"category": "product_version",
"name": "glibc-devel-2.38-slfo.1.1_6.1.s390x",
"product": {
"name": "glibc-devel-2.38-slfo.1.1_6.1.s390x",
"product_id": "glibc-devel-2.38-slfo.1.1_6.1.s390x"
}
},
{
"category": "product_version",
"name": "glibc-locale-2.38-slfo.1.1_6.1.s390x",
"product": {
"name": "glibc-locale-2.38-slfo.1.1_6.1.s390x",
"product_id": "glibc-locale-2.38-slfo.1.1_6.1.s390x"
}
},
{
"category": "product_version",
"name": "glibc-locale-base-2.38-slfo.1.1_6.1.s390x",
"product": {
"name": "glibc-locale-base-2.38-slfo.1.1_6.1.s390x",
"product_id": "glibc-locale-base-2.38-slfo.1.1_6.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "glibc-2.38-slfo.1.1_6.1.x86_64",
"product": {
"name": "glibc-2.38-slfo.1.1_6.1.x86_64",
"product_id": "glibc-2.38-slfo.1.1_6.1.x86_64"
}
},
{
"category": "product_version",
"name": "glibc-devel-2.38-slfo.1.1_6.1.x86_64",
"product": {
"name": "glibc-devel-2.38-slfo.1.1_6.1.x86_64",
"product_id": "glibc-devel-2.38-slfo.1.1_6.1.x86_64"
}
},
{
"category": "product_version",
"name": "glibc-locale-2.38-slfo.1.1_6.1.x86_64",
"product": {
"name": "glibc-locale-2.38-slfo.1.1_6.1.x86_64",
"product_id": "glibc-locale-2.38-slfo.1.1_6.1.x86_64"
}
},
{
"category": "product_version",
"name": "glibc-locale-base-2.38-slfo.1.1_6.1.x86_64",
"product": {
"name": "glibc-locale-base-2.38-slfo.1.1_6.1.x86_64",
"product_id": "glibc-locale-base-2.38-slfo.1.1_6.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Micro 6.1",
"product": {
"name": "SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sl-micro:6.1"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-2.38-slfo.1.1_6.1.aarch64 as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.aarch64"
},
"product_reference": "glibc-2.38-slfo.1.1_6.1.aarch64",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-2.38-slfo.1.1_6.1.ppc64le as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.ppc64le"
},
"product_reference": "glibc-2.38-slfo.1.1_6.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-2.38-slfo.1.1_6.1.s390x as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.s390x"
},
"product_reference": "glibc-2.38-slfo.1.1_6.1.s390x",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-2.38-slfo.1.1_6.1.x86_64 as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.x86_64"
},
"product_reference": "glibc-2.38-slfo.1.1_6.1.x86_64",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-devel-2.38-slfo.1.1_6.1.aarch64 as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.aarch64"
},
"product_reference": "glibc-devel-2.38-slfo.1.1_6.1.aarch64",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-devel-2.38-slfo.1.1_6.1.ppc64le as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.ppc64le"
},
"product_reference": "glibc-devel-2.38-slfo.1.1_6.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-devel-2.38-slfo.1.1_6.1.s390x as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.s390x"
},
"product_reference": "glibc-devel-2.38-slfo.1.1_6.1.s390x",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-devel-2.38-slfo.1.1_6.1.x86_64 as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.x86_64"
},
"product_reference": "glibc-devel-2.38-slfo.1.1_6.1.x86_64",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-locale-2.38-slfo.1.1_6.1.aarch64 as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.aarch64"
},
"product_reference": "glibc-locale-2.38-slfo.1.1_6.1.aarch64",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-locale-2.38-slfo.1.1_6.1.ppc64le as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.ppc64le"
},
"product_reference": "glibc-locale-2.38-slfo.1.1_6.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-locale-2.38-slfo.1.1_6.1.s390x as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.s390x"
},
"product_reference": "glibc-locale-2.38-slfo.1.1_6.1.s390x",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-locale-2.38-slfo.1.1_6.1.x86_64 as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.x86_64"
},
"product_reference": "glibc-locale-2.38-slfo.1.1_6.1.x86_64",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-locale-base-2.38-slfo.1.1_6.1.aarch64 as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.aarch64"
},
"product_reference": "glibc-locale-base-2.38-slfo.1.1_6.1.aarch64",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le"
},
"product_reference": "glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-locale-base-2.38-slfo.1.1_6.1.s390x as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.s390x"
},
"product_reference": "glibc-locale-base-2.38-slfo.1.1_6.1.s390x",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-locale-base-2.38-slfo.1.1_6.1.x86_64 as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.x86_64"
},
"product_reference": "glibc-locale-base-2.38-slfo.1.1_6.1.x86_64",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-15281",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-15281"
}
],
"notes": [
{
"category": "general",
"text": "Calling wordexp with WRDE_REUSE in conjunction with WRDE_APPEND in the GNU C Library version 2.0 to version 2.42 may cause the interface to return uninitialized memory in the we_wordv member, which on subsequent calls to wordfree may abort the process.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-15281",
"url": "https://www.suse.com/security/cve/CVE-2025-15281"
},
{
"category": "external",
"summary": "SUSE Bug 1257005 for CVE-2025-15281",
"url": "https://bugzilla.suse.com/1257005"
}
],
"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 Micro 6.1:glibc-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-03-02T14:49:34Z",
"details": "moderate"
}
],
"title": "CVE-2025-15281"
},
{
"cve": "CVE-2025-8058",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-8058"
}
],
"notes": [
{
"category": "general",
"text": "The regcomp function in the GNU C library version from 2.4 to 2.41 is \nsubject to a double free if some previous allocation fails. It can be \naccomplished either by a malloc failure or by using an interposed malloc\n that injects random malloc failures. The double free can allow buffer \nmanipulation depending of how the regex is constructed. This issue \naffects all architectures and ABIs supported by the GNU C library.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-8058",
"url": "https://www.suse.com/security/cve/CVE-2025-8058"
},
{
"category": "external",
"summary": "SUSE Bug 1246965 for CVE-2025-8058",
"url": "https://bugzilla.suse.com/1246965"
}
],
"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 Micro 6.1:glibc-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.6,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:C/C:L/I:L/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-03-02T14:49:34Z",
"details": "moderate"
}
],
"title": "CVE-2025-8058"
},
{
"cve": "CVE-2026-0861",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-0861"
}
],
"notes": [
{
"category": "general",
"text": "Passing too large an alignment to the memalign suite of functions (memalign, posix_memalign, aligned_alloc) in the GNU C Library version 2.30 to 2.42 may result in an integer overflow, which could consequently result in a heap corruption.\n\nNote that the attacker must have control over both, the size as well as the alignment arguments of the memalign function to be able to exploit this. The size parameter must be close enough to PTRDIFF_MAX so as to overflow size_t along with the large alignment argument. This limits the malicious inputs for the alignment for memalign to the range [1\u003c\u003c62+ 1, 1\u003c\u003c63] and exactly 1\u003c\u003c63 for posix_memalign and aligned_alloc.\n\nTypically the alignment argument passed to such functions is a known constrained quantity (e.g. page size, block size, struct sizes) and is not attacker controlled, because of which this may not be easily exploitable in practice. An application bug could potentially result in the input alignment being too large, e.g. due to a different buffer overflow or integer overflow in the application or its dependent libraries, but that is again an uncommon usage pattern given typical sources of alignments.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-0861",
"url": "https://www.suse.com/security/cve/CVE-2026-0861"
},
{
"category": "external",
"summary": "SUSE Bug 1256766 for CVE-2026-0861",
"url": "https://bugzilla.suse.com/1256766"
},
{
"category": "external",
"summary": "SUSE Bug 1256913 for CVE-2026-0861",
"url": "https://bugzilla.suse.com/1256913"
}
],
"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 Micro 6.1:glibc-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-03-02T14:49:34Z",
"details": "important"
}
],
"title": "CVE-2026-0861"
},
{
"cve": "CVE-2026-0915",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-0915"
}
],
"notes": [
{
"category": "general",
"text": "Calling getnetbyaddr or getnetbyaddr_r with a configured nsswitch.conf that specifies the library\u0027s DNS backend for networks and queries for a zero-valued network in the GNU C Library version 2.0 to version 2.42 can leak stack contents to the configured DNS resolver.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-0915",
"url": "https://www.suse.com/security/cve/CVE-2026-0915"
},
{
"category": "external",
"summary": "SUSE Bug 1256822 for CVE-2026-0915",
"url": "https://bugzilla.suse.com/1256822"
}
],
"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 Micro 6.1:glibc-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-devel-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-2.38-slfo.1.1_6.1.x86_64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.aarch64",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.ppc64le",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.s390x",
"SUSE Linux Micro 6.1:glibc-locale-base-2.38-slfo.1.1_6.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-03-02T14:49:34Z",
"details": "moderate"
}
],
"title": "CVE-2026-0915"
}
]
}
SUSE-SU-2026:20544-1
Vulnerability from csaf_suse - Published: 2026-04-28 16:18 - Updated: 2026-04-28 16:18Summary
Security update for glibc-livepatches
Severity
Important
Notes
Title of the patch: Security update for glibc-livepatches
Description of the patch: This update for glibc-livepatches fixes the following issues:
Changes in glibc-livepatches:
- CVE-2026-0861: Fixed inadequate size check in the memalign suite may result in an integer overflow (bsc#1256913)
Patchnames: SUSE-SL-Micro-6.2-301
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
7.8 (High)
Affected products
Recommended
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.2:glibc-livepatches-0.4-160000.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.2:glibc-livepatches-0.4-160000.1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
References
11 references
{
"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 glibc-livepatches",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for glibc-livepatches fixes the following issues:\n\nChanges in glibc-livepatches:\n\n- CVE-2026-0861: Fixed inadequate size check in the memalign suite may result in an integer overflow (bsc#1256913)\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-SL-Micro-6.2-301",
"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_20544-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2026:20544-1",
"url": "https://www.suse.com/support/update/announcement/2026/suse-su-202620544-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2026:20544-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024593.html"
},
{
"category": "self",
"summary": "SUSE Bug 1226501",
"url": "https://bugzilla.suse.com/1226501"
},
{
"category": "self",
"summary": "SUSE Bug 1228879",
"url": "https://bugzilla.suse.com/1228879"
},
{
"category": "self",
"summary": "SUSE Bug 1256913",
"url": "https://bugzilla.suse.com/1256913"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-0861 page",
"url": "https://www.suse.com/security/cve/CVE-2026-0861/"
}
],
"title": "Security update for glibc-livepatches",
"tracking": {
"current_release_date": "2026-04-28T16:18:32Z",
"generator": {
"date": "2026-04-28T16:18:32Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2026:20544-1",
"initial_release_date": "2026-04-28T16:18:32Z",
"revision_history": [
{
"date": "2026-04-28T16:18:32Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "glibc-livepatches-0.4-160000.1.1.ppc64le",
"product": {
"name": "glibc-livepatches-0.4-160000.1.1.ppc64le",
"product_id": "glibc-livepatches-0.4-160000.1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "glibc-livepatches-0.4-160000.1.1.x86_64",
"product": {
"name": "glibc-livepatches-0.4-160000.1.1.x86_64",
"product_id": "glibc-livepatches-0.4-160000.1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Micro 6.2",
"product": {
"name": "SUSE Linux Micro 6.2",
"product_id": "SUSE Linux Micro 6.2",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sl-micro:6.2"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-livepatches-0.4-160000.1.1.ppc64le as component of SUSE Linux Micro 6.2",
"product_id": "SUSE Linux Micro 6.2:glibc-livepatches-0.4-160000.1.1.ppc64le"
},
"product_reference": "glibc-livepatches-0.4-160000.1.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Micro 6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-livepatches-0.4-160000.1.1.x86_64 as component of SUSE Linux Micro 6.2",
"product_id": "SUSE Linux Micro 6.2:glibc-livepatches-0.4-160000.1.1.x86_64"
},
"product_reference": "glibc-livepatches-0.4-160000.1.1.x86_64",
"relates_to_product_reference": "SUSE Linux Micro 6.2"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-0861",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-0861"
}
],
"notes": [
{
"category": "general",
"text": "Passing too large an alignment to the memalign suite of functions (memalign, posix_memalign, aligned_alloc) in the GNU C Library version 2.30 to 2.42 may result in an integer overflow, which could consequently result in a heap corruption.\n\nNote that the attacker must have control over both, the size as well as the alignment arguments of the memalign function to be able to exploit this. The size parameter must be close enough to PTRDIFF_MAX so as to overflow size_t along with the large alignment argument. This limits the malicious inputs for the alignment for memalign to the range [1\u003c\u003c62+ 1, 1\u003c\u003c63] and exactly 1\u003c\u003c63 for posix_memalign and aligned_alloc.\n\nTypically the alignment argument passed to such functions is a known constrained quantity (e.g. page size, block size, struct sizes) and is not attacker controlled, because of which this may not be easily exploitable in practice. An application bug could potentially result in the input alignment being too large, e.g. due to a different buffer overflow or integer overflow in the application or its dependent libraries, but that is again an uncommon usage pattern given typical sources of alignments.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.2:glibc-livepatches-0.4-160000.1.1.ppc64le",
"SUSE Linux Micro 6.2:glibc-livepatches-0.4-160000.1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-0861",
"url": "https://www.suse.com/security/cve/CVE-2026-0861"
},
{
"category": "external",
"summary": "SUSE Bug 1256766 for CVE-2026-0861",
"url": "https://bugzilla.suse.com/1256766"
},
{
"category": "external",
"summary": "SUSE Bug 1256913 for CVE-2026-0861",
"url": "https://bugzilla.suse.com/1256913"
}
],
"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 Micro 6.2:glibc-livepatches-0.4-160000.1.1.ppc64le",
"SUSE Linux Micro 6.2:glibc-livepatches-0.4-160000.1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.2:glibc-livepatches-0.4-160000.1.1.ppc64le",
"SUSE Linux Micro 6.2:glibc-livepatches-0.4-160000.1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-28T16:18:32Z",
"details": "important"
}
],
"title": "CVE-2026-0861"
}
]
}
SUSE-SU-2026:20608-1
Vulnerability from csaf_suse - Published: 2026-04-28 16:18 - Updated: 2026-04-28 16:18Summary
Security update for glibc-livepatches
Severity
Important
Notes
Title of the patch: Security update for glibc-livepatches
Description of the patch: This update for glibc-livepatches fixes the following issues:
Changes in glibc-livepatches:
- CVE-2026-0861: Fixed inadequate size check in the memalign suite may result in an integer overflow (bsc#1256913)
Patchnames: SUSE-SLES-16.0-301
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
7.8 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Server 16.0:glibc-livepatches-0.4-160000.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 16.0:glibc-livepatches-0.4-160000.1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP applications 16.0:glibc-livepatches-0.4-160000.1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP applications 16.0:glibc-livepatches-0.4-160000.1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
References
11 references
{
"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 glibc-livepatches",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for glibc-livepatches fixes the following issues:\n\nChanges in glibc-livepatches:\n\n- CVE-2026-0861: Fixed inadequate size check in the memalign suite may result in an integer overflow (bsc#1256913)\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-SLES-16.0-301",
"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_20608-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2026:20608-1",
"url": "https://www.suse.com/support/update/announcement/2026/suse-su-202620608-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2026:20608-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024608.html"
},
{
"category": "self",
"summary": "SUSE Bug 1226501",
"url": "https://bugzilla.suse.com/1226501"
},
{
"category": "self",
"summary": "SUSE Bug 1228879",
"url": "https://bugzilla.suse.com/1228879"
},
{
"category": "self",
"summary": "SUSE Bug 1256913",
"url": "https://bugzilla.suse.com/1256913"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-0861 page",
"url": "https://www.suse.com/security/cve/CVE-2026-0861/"
}
],
"title": "Security update for glibc-livepatches",
"tracking": {
"current_release_date": "2026-04-28T16:18:32Z",
"generator": {
"date": "2026-04-28T16:18:32Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2026:20608-1",
"initial_release_date": "2026-04-28T16:18:32Z",
"revision_history": [
{
"date": "2026-04-28T16:18:32Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "glibc-livepatches-0.4-160000.1.1.ppc64le",
"product": {
"name": "glibc-livepatches-0.4-160000.1.1.ppc64le",
"product_id": "glibc-livepatches-0.4-160000.1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "glibc-livepatches-0.4-160000.1.1.x86_64",
"product": {
"name": "glibc-livepatches-0.4-160000.1.1.x86_64",
"product_id": "glibc-livepatches-0.4-160000.1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 16.0",
"product": {
"name": "SUSE Linux Enterprise Server 16.0",
"product_id": "SUSE Linux Enterprise Server 16.0",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles:16:16.0:server"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP applications 16.0",
"product": {
"name": "SUSE Linux Enterprise Server for SAP applications 16.0",
"product_id": "SUSE Linux Enterprise Server for SAP applications 16.0",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles:16:16.0:server-sap"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-livepatches-0.4-160000.1.1.ppc64le as component of SUSE Linux Enterprise Server 16.0",
"product_id": "SUSE Linux Enterprise Server 16.0:glibc-livepatches-0.4-160000.1.1.ppc64le"
},
"product_reference": "glibc-livepatches-0.4-160000.1.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-livepatches-0.4-160000.1.1.x86_64 as component of SUSE Linux Enterprise Server 16.0",
"product_id": "SUSE Linux Enterprise Server 16.0:glibc-livepatches-0.4-160000.1.1.x86_64"
},
"product_reference": "glibc-livepatches-0.4-160000.1.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-livepatches-0.4-160000.1.1.ppc64le as component of SUSE Linux Enterprise Server for SAP applications 16.0",
"product_id": "SUSE Linux Enterprise Server for SAP applications 16.0:glibc-livepatches-0.4-160000.1.1.ppc64le"
},
"product_reference": "glibc-livepatches-0.4-160000.1.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP applications 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "glibc-livepatches-0.4-160000.1.1.x86_64 as component of SUSE Linux Enterprise Server for SAP applications 16.0",
"product_id": "SUSE Linux Enterprise Server for SAP applications 16.0:glibc-livepatches-0.4-160000.1.1.x86_64"
},
"product_reference": "glibc-livepatches-0.4-160000.1.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP applications 16.0"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-0861",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-0861"
}
],
"notes": [
{
"category": "general",
"text": "Passing too large an alignment to the memalign suite of functions (memalign, posix_memalign, aligned_alloc) in the GNU C Library version 2.30 to 2.42 may result in an integer overflow, which could consequently result in a heap corruption.\n\nNote that the attacker must have control over both, the size as well as the alignment arguments of the memalign function to be able to exploit this. The size parameter must be close enough to PTRDIFF_MAX so as to overflow size_t along with the large alignment argument. This limits the malicious inputs for the alignment for memalign to the range [1\u003c\u003c62+ 1, 1\u003c\u003c63] and exactly 1\u003c\u003c63 for posix_memalign and aligned_alloc.\n\nTypically the alignment argument passed to such functions is a known constrained quantity (e.g. page size, block size, struct sizes) and is not attacker controlled, because of which this may not be easily exploitable in practice. An application bug could potentially result in the input alignment being too large, e.g. due to a different buffer overflow or integer overflow in the application or its dependent libraries, but that is again an uncommon usage pattern given typical sources of alignments.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Server 16.0:glibc-livepatches-0.4-160000.1.1.ppc64le",
"SUSE Linux Enterprise Server 16.0:glibc-livepatches-0.4-160000.1.1.x86_64",
"SUSE Linux Enterprise Server for SAP applications 16.0:glibc-livepatches-0.4-160000.1.1.ppc64le",
"SUSE Linux Enterprise Server for SAP applications 16.0:glibc-livepatches-0.4-160000.1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-0861",
"url": "https://www.suse.com/security/cve/CVE-2026-0861"
},
{
"category": "external",
"summary": "SUSE Bug 1256766 for CVE-2026-0861",
"url": "https://bugzilla.suse.com/1256766"
},
{
"category": "external",
"summary": "SUSE Bug 1256913 for CVE-2026-0861",
"url": "https://bugzilla.suse.com/1256913"
}
],
"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 16.0:glibc-livepatches-0.4-160000.1.1.ppc64le",
"SUSE Linux Enterprise Server 16.0:glibc-livepatches-0.4-160000.1.1.x86_64",
"SUSE Linux Enterprise Server for SAP applications 16.0:glibc-livepatches-0.4-160000.1.1.ppc64le",
"SUSE Linux Enterprise Server for SAP applications 16.0:glibc-livepatches-0.4-160000.1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Server 16.0:glibc-livepatches-0.4-160000.1.1.ppc64le",
"SUSE Linux Enterprise Server 16.0:glibc-livepatches-0.4-160000.1.1.x86_64",
"SUSE Linux Enterprise Server for SAP applications 16.0:glibc-livepatches-0.4-160000.1.1.ppc64le",
"SUSE Linux Enterprise Server for SAP applications 16.0:glibc-livepatches-0.4-160000.1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-28T16:18:32Z",
"details": "important"
}
],
"title": "CVE-2026-0861"
}
]
}
WID-SEC-W-2026-0118
Vulnerability from csaf_certbund - Published: 2026-01-14 23:00 - Updated: 2026-02-15 23:00Summary
GNU libc: Schwachstelle ermöglicht Codeausführung
Severity
Hoch
Notes
Das BSI ist als Anbieter für die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch dafür verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgfältig im Einzelfall zu prüfen.
Produktbeschreibung: Die GNU libc ist die Basis C Bibliothek unter Linux sowie anderen Unix-Betriebssystemen, welche die Systemaufrufe sowie Basisfunktionalität bereitstellt.
Angriff: Ein lokaler Angreifer kann eine Schwachstelle in GNU libc ausnutzen, um beliebigen Programmcode auszuführen.
Betroffene Betriebssysteme: - Linux
- UNIX
Affected products
Known affected
8 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source GNU libc
Open Source / GNU libc
|
cpe:/a:gnu:glibc:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Fedora Linux
Fedora
|
cpe:/o:fedoraproject:fedora:-
|
— |
Last affected
1 product
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source GNU libc <=2.42
Open Source / GNU libc
|
<=2.42 |
References
17 references
{
"document": {
"aggregate_severity": {
"text": "hoch"
},
"category": "csaf_base",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "de-DE",
"notes": [
{
"category": "legal_disclaimer",
"text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen."
},
{
"category": "description",
"text": "Die GNU libc ist die Basis C Bibliothek unter Linux sowie anderen Unix-Betriebssystemen, welche die Systemaufrufe sowie Basisfunktionalit\u00e4t bereitstellt.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein lokaler Angreifer kann eine Schwachstelle in GNU libc ausnutzen, um beliebigen Programmcode auszuf\u00fchren.",
"title": "Angriff"
},
{
"category": "general",
"text": "- Linux\n- UNIX",
"title": "Betroffene Betriebssysteme"
}
],
"publisher": {
"category": "other",
"contact_details": "csaf-provider@cert-bund.de",
"name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik",
"namespace": "https://www.bsi.bund.de"
},
"references": [
{
"category": "self",
"summary": "WID-SEC-W-2026-0118 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2026/wid-sec-w-2026-0118.json"
},
{
"category": "self",
"summary": "WID-SEC-2026-0118 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2026-0118"
},
{
"category": "external",
"summary": "GitHub Advisory Database vom 2026-01-14",
"url": "https://github.com/advisories/GHSA-5pf6-63v3-88hw"
},
{
"category": "external",
"summary": "Sourceware Bugzilla vom 2026-01-14",
"url": "https://sourceware.org/bugzilla/show_bug.cgi?id=33796"
},
{
"category": "external",
"summary": "GNU C Library Security Advisory GLIBC-SA-2026-0001 vom 2026-01-16",
"url": "https://seclists.org/oss-sec/2026/q1/77"
},
{
"category": "external",
"summary": "Fedora Security Advisory FEDORA-2026-205D532069 vom 2026-01-24",
"url": "https://bodhi.fedoraproject.org/updates/FEDORA-2026-205d532069"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:1334 vom 2026-01-27",
"url": "https://access.redhat.com/errata/RHSA-2026:1334"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-1334 vom 2026-01-28",
"url": "https://linux.oracle.com/errata/ELSA-2026-1334.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50078 vom 2026-01-29",
"url": "https://linux.oracle.com/errata/ELSA-2026-50078.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0347-1 vom 2026-01-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-January/023996.html"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2026:1334 vom 2026-01-31",
"url": "https://errata.build.resf.org/RLSA-2026:1334"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20178-1 vom 2026-02-02",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024006.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20198-1 vom 2026-02-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024021.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8005-1 vom 2026-02-04",
"url": "https://ubuntu.com/security/notices/USN-8005-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0371-1 vom 2026-02-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024041.html"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2026:20133-1 vom 2026-02-03",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/EPLJR3OY45237BIGNXCUI2WBH3LI5ESB/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0499-1 vom 2026-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024155.html"
}
],
"source_lang": "en-US",
"title": "GNU libc: Schwachstelle erm\u00f6glicht Codeausf\u00fchrung",
"tracking": {
"current_release_date": "2026-02-15T23:00:00.000+00:00",
"generator": {
"date": "2026-02-16T11:20:51.145+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.5.0"
}
},
"id": "WID-SEC-W-2026-0118",
"initial_release_date": "2026-01-14T23:00:00.000+00:00",
"revision_history": [
{
"date": "2026-01-14T23:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2026-01-18T23:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von GNU C Library aufgenommen"
},
{
"date": "2026-01-25T23:00:00.000+00:00",
"number": "3",
"summary": "Neue Updates von Fedora aufgenommen"
},
{
"date": "2026-01-26T23:00:00.000+00:00",
"number": "4",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-01-27T23:00:00.000+00:00",
"number": "5",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-01-29T23:00:00.000+00:00",
"number": "6",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-02-01T23:00:00.000+00:00",
"number": "7",
"summary": "Neue Updates von SUSE und Rocky Enterprise Software Foundation aufgenommen"
},
{
"date": "2026-02-02T23:00:00.000+00:00",
"number": "8",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-02-03T23:00:00.000+00:00",
"number": "9",
"summary": "Neue Updates von SUSE, Ubuntu und openSUSE aufgenommen"
},
{
"date": "2026-02-15T23:00:00.000+00:00",
"number": "10",
"summary": "Neue Updates von SUSE aufgenommen"
}
],
"status": "final",
"version": "10"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Fedora Linux",
"product": {
"name": "Fedora Linux",
"product_id": "74185",
"product_identification_helper": {
"cpe": "cpe:/o:fedoraproject:fedora:-"
}
}
}
],
"category": "vendor",
"name": "Fedora"
},
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003e=2.30",
"product": {
"name": "Open Source GNU libc \u003e=2.30",
"product_id": "476690"
}
},
{
"category": "product_version_range",
"name": "\u003e=2.30",
"product": {
"name": "Open Source GNU libc \u003e=2.30",
"product_id": "476690-fixed"
}
},
{
"category": "product_version_range",
"name": "\u003c=2.42",
"product": {
"name": "Open Source GNU libc \u003c=2.42",
"product_id": "T050013"
}
},
{
"category": "product_version_range",
"name": "\u003c=2.42",
"product": {
"name": "Open Source GNU libc \u003c=2.42",
"product_id": "T050013-fixed"
}
},
{
"category": "product_name",
"name": "Open Source GNU libc",
"product": {
"name": "Open Source GNU libc",
"product_id": "T050064",
"product_identification_helper": {
"cpe": "cpe:/a:gnu:glibc:-"
}
}
}
],
"category": "product_name",
"name": "GNU libc"
}
],
"category": "vendor",
"name": "Open Source"
},
{
"branches": [
{
"category": "product_name",
"name": "Oracle Linux",
"product": {
"name": "Oracle Linux",
"product_id": "T004914",
"product_identification_helper": {
"cpe": "cpe:/o:oracle:linux:-"
}
}
}
],
"category": "vendor",
"name": "Oracle"
},
{
"branches": [
{
"category": "product_name",
"name": "RESF Rocky Linux",
"product": {
"name": "RESF Rocky Linux",
"product_id": "T032255",
"product_identification_helper": {
"cpe": "cpe:/o:resf:rocky_linux:-"
}
}
}
],
"category": "vendor",
"name": "RESF"
},
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux",
"product": {
"name": "Red Hat Enterprise Linux",
"product_id": "67646",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:-"
}
}
}
],
"category": "vendor",
"name": "Red Hat"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux",
"product": {
"name": "SUSE Linux",
"product_id": "T002207",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse_linux:-"
}
}
},
{
"category": "product_name",
"name": "SUSE openSUSE",
"product": {
"name": "SUSE openSUSE",
"product_id": "T027843",
"product_identification_helper": {
"cpe": "cpe:/o:suse:opensuse:-"
}
}
}
],
"category": "vendor",
"name": "SUSE"
},
{
"branches": [
{
"category": "product_name",
"name": "Ubuntu Linux",
"product": {
"name": "Ubuntu Linux",
"product_id": "T000126",
"product_identification_helper": {
"cpe": "cpe:/o:canonical:ubuntu_linux:-"
}
}
}
],
"category": "vendor",
"name": "Ubuntu"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-0861",
"product_status": {
"known_affected": [
"T050064",
"T002207",
"67646",
"T000126",
"T027843",
"T004914",
"T032255",
"74185"
],
"last_affected": [
"T050013"
]
},
"release_date": "2026-01-14T23:00:00.000+00:00",
"title": "CVE-2026-0861"
}
]
}
Loading…
Trend slope:
-
(linear fit over daily sighting counts)
Show additional events:
Loading…
Experimental. This forecast is provided for visualization only and may change without notice. Do not use it for operational decisions.
Forecast uses a logistic model when the trend is rising, or an exponential decay model when the trend is falling. Fitted via linearized least squares.
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.
Loading…
Loading…