CVE-2026-89550
Last modified
CVE-2026-89550 is a critical-severity vulnerability rated 9.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: SUNRPC: svcauth_gss: enforce krb5 token minimum length svcauth_gss_unwrap_priv() validates only an upper bound on the wire-supplied opaque length before handing the buffer to gss_unwrap(): if (len > xdr_stream_remaining(xdr)) goto unwrap_failed; offset = xdr_stream_pos(xdr); ... maj_stat = gss_unwrap(ctx, offset, offset + len, buf); The wire value `len` flows unchanged as the upper bound into the krb5 unwrap path, so a len in [0, 16] passes this check and is handed to gss_unwrap(). For a krb5 v2 context that lands in gss_krb5_unwrap_v2(), which reads the 16-byte RFC 4121 token header fields at ptr+4 and ptr+6 and then calls rotate_left() before any integrity check. EPSS estimates a 0.46% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: SUNRPC: svcauth_gss: enforce krb5 token minimum length svcauth_gss_unwrap_priv() validates only an upper bound on the wire-supplied opaque length before handing the buffer to gss_unwrap(): if (len > xdr_stream_remaining(xdr)) goto unwrap_failed; offset = xdr_stream_pos(xdr); ... maj_stat = gss_unwrap(ctx, offset, offset + len, buf); The wire value `len` flows unchanged as the upper bound into the krb5 unwrap path, so a len in [0, 16] passes this check and is handed to gss_unwrap(). For a krb5 v2 context that lands in gss_krb5_unwrap_v2(), which reads the 16-byte RFC 4121 token header fields at ptr+4 and ptr+6 and then calls rotate_left() before any integrity check. With a sub-header length the header reads run past the token, and _rotate_left()'s `shift %= buf->len` path can divide by zero when buf->len has been driven to zero by the truncated token. A header-only token (len == 16) is equally invalid: with a non-zero RRC field and the opaque blob ending at the XDR buffer boundary, rotate_left() builds a zero-length subbuffer, reaching the same division. Reject the token at the server entry point before it reaches the krb5 unwrap core. A valid sealed RFC 4121 token must contain the 16-byte header plus at least some encrypted payload. Fix by adding a minimum-length check immediately after the existing upper-bound check: if (len <= GSS_KRB5_TOK_HDR_LEN) goto unwrap_failed;
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 7c9fdcfb1b64c47ed618c103b617af3f86e1239c, < 0ea5b0c7f212c2772d32c2b88287b89a9cdf6edd; >= 7c9fdcfb1b64c47ed618c103b617af3f86e1239c, < dd6afc6cab8c5d387d1ed2f069562ef7bdadd651; >= 7c9fdcfb1b64c47ed618c103b617af3f86e1239c, < de942dd8c2c8358bcad04ce44271954c48924423; >= 7c9fdcfb1b64c47ed618c103b617af3f86e1239c, < 2eed1e6a976a44015c3ee78841fe336796e2b21c; >= 7c9fdcfb1b64c47ed618c103b617af3f86e1239c, < a919c5c88769cf8fb3ec071e6078d830bf512489 |
| Linux | Linux | 2.6.18 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-89550?
How severe is CVE-2026-89550?
How do I fix CVE-2026-89550?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-89545In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89546In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-89547In the Linux kernel, the following vulnerability has been re…8.1
- CVE-2026-89548In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89549In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-8955Privilege escalation in the DOM: Workers component. This vul…8.8
- CVE-2026-89551In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-89552In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89553In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89554In the Linux kernel, the following vulnerability has been re…8.2
- CVE-2026-89555In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-89556In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-89550?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
