Skip to main content

Linux Kernel DRBD CVE-2026-72014

| EUVDEUVD-2026-59113 CRITICAL
2026-08-15 416baaa9-dc9f-4396-8d5f-8c081fb06d67 GHSA-3m7c-3jm4-qc8p
Critical
Disputed · 9.8 Vendor: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Share

Severity by source

Sources disagree (Medium–Critical)
Vendor (416baaa9-dc9f-4396-8d5f-8c081fb06d67) PRIMARY
9.8 CRITICAL
AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
vuln.today AI
8.1 HIGH

Network vector, but AC:H because the attacker must be the DRBD peer or MITM the replication link and the victim must read from peer; kernel corruption yields full C/I/A impact.

3.1 AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
4.0 AV:N/AC:H/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N
SUSE
6.5 MEDIUM
AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Red Hat
5.5 MEDIUM
qualitative

vuln.today treats the vendor’s rating as authoritative. A higher third-party CVSS (e.g. CISA-ADP) is shown for transparency but does not drive the headline severity.

CVSS VectorVendor: 416baaa9-dc9f-4396-8d5f-8c081fb06d67

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
High

Lifecycle Timeline

5
Analysis Generated
Aug 17, 2026 - 12:46 vuln.today
CVSS changed
Aug 17, 2026 - 06:22 NVD
9.8 (CRITICAL)
Patch available
Aug 15, 2026 - 07:20 EUVD
CVE Published
Aug 15, 2026 - 06:21 cve.org
CRITICAL 9.8
CVE Published
Aug 15, 2026 - 06:21 cve.org
UNKNOWN (no severity yet)

DescriptionCVE.org

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

drbd: reject data replies with an out-of-range payload size

recv_dless_read() receives a P_DATA_REPLY from a peer into the bio of an outstanding read request. The peer-supplied payload length reaches it as the signed int data_size, and two peer-controlled inputs can make it negative. With a negotiated data-integrity-alg the digest length is subtracted first, so a reply whose payload is smaller than the digest underflows data_size. With no integrity algorithm (the default) data_size is assigned from the unsigned h95/h100 wire length and drbdd() never bounds it for a payload-carrying command, so a length above INT_MAX casts it negative; this path needs no non-default feature. The bio receive loop then computes expect = min_t(int, data_size, bv_len), which is negative, and drbd_recv_all_warn(mapped, expect) receives with a size_t of SIZE_MAX into the first mapped page.

The sibling receive path read_in_block() is not affected: it uses an unsigned size and rejects it against DRBD_MAX_BIO_SIZE before receiving. Reject a data reply whose size is negative after the optional digest subtraction, covering both triggers.

Impact: a malicious or man-in-the-middle DRBD peer copies attacker-chosen bytes past a bio page in the receiver, corrupting kernel memory. A node that reads from its peer (a diskless node, or read-balancing to the peer) is exposed in the default configuration; data-integrity-alg is not required.

AnalysisAI

Kernel memory corruption in the Linux kernel's DRBD (Distributed Replicated Block Device) driver lets a malicious or man-in-the-middle replication peer write attacker-chosen bytes past a bio page in a receiving node. The flaw lives in recv_dless_read(), where a peer-supplied payload length is handled as a signed int (data_size) that can be driven negative, and it affects any node that reads from its peer - a diskless node or one using read-balancing - in the default configuration. Rated CVSS 9.8 by NVD; there is no public exploit identified at time of analysis and EPSS probability is low (0.20%).

Technical ContextAI

DRBD replicates block devices over the network between cluster nodes; the receive path recv_dless_read() copies a P_DATA_REPLY (a peer's answer to an outstanding read request) into the bio of that request. The payload length arrives as the signed int data_size and two peer-controlled inputs can make it negative: with a negotiated data-integrity-alg the digest length is subtracted first, so a reply smaller than the digest underflows data_size; with no integrity algorithm (the default), data_size is assigned from the unsigned h95/h100 wire length and drbdd() never bounds it for a payload-carrying command, so any length above INT_MAX casts negative. The bio loop then computes expect = min_t(int, data_size, bv_len), which is negative, and drbd_recv_all_warn() receives with a size_t of SIZE_MAX into the first mapped page - a classic signed/unsigned confusion leading to an out-of-bounds heap write (CWE-190/CWE-787 class; CWE not populated in the feed). The sibling path read_in_block() is unaffected because it uses an unsigned size and validates against DRBD_MAX_BIO_SIZE before receiving.

RemediationAI

Vendor-released patch: upgrade to a fixed stable kernel for your series - 5.10.261, 5.15.212, 6.1.178, 6.6.145, 6.12.97, 6.18.40, or 7.1.5 (7.2-rc3 in mainline) - pulling the fix that rejects a data reply whose size is negative after the optional digest subtraction. Confirm the exact fix commit for your tree via the git.kernel.org/stable/c/ references. Where immediate patching is not possible, reduce exposure by hardening the replication path rather than relying on generic defense-in-depth: isolate DRBD traffic onto a dedicated, physically or VLAN-segregated replication link and/or tunnel it over IPsec to defeat the man-in-the-middle vector (trade-off: added latency on the sync path); enable DRBD's shared-secret peer authentication (cram-hmac-alg/shared-secret) to raise the bar for a rogue peer (trade-off: config change and key management, and it does not stop an already-compromised legitimate peer); and where operationally acceptable, avoid diskless and read-from-peer/read-balancing configurations so the vulnerable read path is not exercised (trade-off: loss of the availability/performance benefit those modes provide). These controls mitigate but do not fully remediate - patching is the only complete fix.

Vendor StatusVendor

SUSE

Severity: Moderate
Product Status
SUSE Linux Enterprise Desktop 15 SP7 Affected
SUSE Linux Enterprise Desktop 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 16.0 Affected

Share

CVE-2026-72014 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy