Get a Demo

Let's Patch It!

Book a short call with one our specialists, we'll walk you through how Endor Patches work, and ask you a few questions about your environment (like your primary programming languages and repository management). We'll also send you an email right after you fill out the form, feel free to reply with any questions you have in advance!

CVE

CVE-2026-68124

mctp: serial: handle zero-length frames to prevent rx buffer overflow
Back to all
CVE

CVE-2026-68124

mctp: serial: handle zero-length frames to prevent rx buffer overflow

In the Linux kernel, the following vulnerability has been resolved:

mctp: serial: handle zero-length frames to prevent rx buffer overflow

The MCTP serial receive state machine reads a frame length byte in

mctpserialpush_header() case 2 and validates it upper-bound-only:

if (c > MCTPSERIALFRAME_MTU) {

dev->rxstate = STATE_ERR;

} else {

dev->rxlen = c;

dev->rxpos = 0;

dev->rxstate = STATE_DATA;

...

}

A length of zero passes this check, so rxlen is set to 0 and the state

machine advances to STATEDATA. In mctpserialpush() STATEDATA, the

incoming byte is stored and rxpos incremented before the terminator is

dev->rxbuf[dev->rxpos] = c;

dev->rxpos++;

dev->rxstate = STATE_DATA;

if (dev->rxpos == dev->rxlen) {

dev->rxpos = 0;

dev->rxstate = STATE_TRAILER;

}

With rxlen == 0 the "rxpos == rxlen" terminator can never fire (rxpos is

already 1 on the first data byte), so subsequent bytes are written past

the end of the fixed 74-byte rxbuf, which is the last member of the

netdev private area. Every following data byte is an attacker-controlled

1-byte out-of-bounds heap write, and the overflow continues until a

frame (0x7e) or escape byte resets the parser -- effectively unbounded.

Reaching this requires CAPNETADMIN to attach the N_MCTP line

discipline and bring the resulting mctpserialN netdev up, after which

the bytes arrive via the tty receive path.

Route a zero-length frame straight to STATE_TRAILER instead of

STATE_DATA. The trailer/framing bytes are still consumed, and the frame

resolves to a zero-length skb that the MCTP core rejects; the parser

never enters STATE_DATA with rxlen == 0, so the out-of-bounds write can

no longer occur.

KASAN, on a frame of 0x7e 0x01 0x00 followed by data bytes (before this

change):

  UBSAN: array-index-out-of-bounds in drivers/net/mctp/mctp-serial.c:370

  index 74 is out of range for type 'u8 [74]'

  BUG: KASAN: slab-out-of-bounds in mctpserialttyreceivebuf

  Write of size 1 at addr ... by task kworker/u16:0

   mctpserialttyreceivebuf

   ttyldiscreceive_buf

   flushtoldisc

  Allocated by task 152:

   allocnetdevmqs

   mctpserialopen

v2: route zero-length frames to STATETRAILER instead of STATEERR so

    the trailer/framing bytes are still consumed (Jeremy Kerr).

Found by 0sec automated security-research tooling (https://0sec.ai).

Package Versions Affected

Package Version
patch Availability
No items found.

Automatically patch vulnerabilities without upgrading

Fix Without Upgrading
Detect compatible fix
Apply safe remediation
Fix with a single pull request

CVSS Version

Severity
Base Score
CVSS Version
Score Vector
C
H
U
9.6
-
3.1
CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H
C
H
U
0
-
3.1
CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H
C
H
U
-

Related Resources

No items found.

References

https://git.kernel.org/stable/c/06a6b606129c8a25cd457760f5370f3ff01fe05d, https://git.kernel.org/stable/c/36dc6d6964a3b90411cc7944cd9b8b6f67b9807b, https://git.kernel.org/stable/c/64b96ae7912244d55257aa330d9569ee0a8f8d99, https://git.kernel.org/stable/c/68819427bc07eca7963a9e8be19e5272cc29186c, https://git.kernel.org/stable/c/793b9b729f1e8de57be8c8daf1a9838be96cabed, https://git.kernel.org/stable/c/f80ba170d7b3a44e3d244a2c8e06031d61bf3b23, https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/68xxx/CVE-2026-68124.json, https://nvd.nist.gov/vuln/detail/CVE-2026-68124, https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Severity

9.6

CVSS Score
0
10

Basic Information

Base CVSS
9.6
EPSS Probability
0.00348%
EPSS Percentile
0.27437%
Introduced Version
a0c2ccd9b5ad0a9e838158404e041b5a8ff762dd,5.17.0,6.2.0,6.7.0,6.13.0,6.19.0,0
Fix Available
793b9b729f1e8de57be8c8daf1a9838be96cabed,6.1.183,6.6.148,6.12.101,6.18.42,7.1.6,6.12.101-1~deb12u1,6.12.101-1

Fix Critical Vulnerabilities Instantly

Secure your app without upgrading.
Fix Without Upgrading