Skip to main content

Linux Kernel CVE-2026-68287

| EUVDEUVD-2026-55388 HIGH
2026-08-10 Linux GHSA-mc29-r954-2m26
7.5
CVSS 3.1 · Vendor: Linux
Share

Severity by source

Vendor (Linux) PRIMARY
7.5 HIGH
AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
vuln.today AI
5.9 MEDIUM

AC:H reflects the strict architecture prerequisite (32-bit without CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS); PR:N retained because the attacker needs no credentials to send crash-inducing traffic once drop_monitor is enabled by an admin.

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

Primary rating from Vendor (Linux).

CVSS VectorVendor: Linux

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

Lifecycle Timeline

5
Analysis Generated
Aug 14, 2026 - 03:20 vuln.today
CVSS changed
Aug 13, 2026 - 23:37 NVD
7.5 (HIGH)
Patch available
Aug 10, 2026 - 14:18 EUVD
CVE Published
Aug 10, 2026 - 12:02 cve.org
HIGH 7.5
CVE Published
Aug 10, 2026 - 12:02 cve.org
UNKNOWN (no severity yet)

DescriptionCVE.org

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

drop_monitor: fix size calculations for 64-bit attributes

net_dm_packet_report_fill() and net_dm_hw_packet_report_fill() use nla_put_u64_64bit() to append 64-bit attributes (NET_DM_ATTR_PC and NET_DM_ATTR_TIMESTAMP).

On 32-bit architectures without CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS, nla_put_u64_64bit() may append a 4-byte NET_DM_ATTR_PAD attribute for 64-bit alignment.

However, net_dm_packet_report_size() and net_dm_hw_packet_report_size() used nla_total_size(sizeof(u64)) instead of nla_total_size_64bit(sizeof(u64)), budgeting 12 bytes instead of up to 16 bytes.

This under-estimation of SKB size can lead to an skb_over_panic() when __nla_reserve() or skb_put() is subsequently called.

Fix this by using nla_total_size_64bit(sizeof(u64)) in both size calculations.

AnalysisAI

Kernel panic via buffer overrun in the Linux kernel's drop_monitor subsystem when reporting packet drop events on 32-bit architectures without CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS. The size calculation functions net_dm_packet_report_size() and net_dm_hw_packet_report_size() under-budget SKB allocation by up to 4 bytes, failing to account for the alignment padding that nla_put_u64_64bit() inserts on affected architectures, resulting in skb_over_panic() and a full kernel crash. No public exploit is known, and EPSS at 0.20% (10th percentile) reflects low exploitation probability consistent with the architecture-specific trigger condition.

Technical ContextAI

The Linux kernel's drop_monitor subsystem (CONFIG_NET_DROP_MONITOR) delivers real-time network packet-drop telemetry via netlink. The affected functions net_dm_packet_report_fill() and net_dm_hw_packet_report_fill() serialize NET_DM_ATTR_PC and NET_DM_ATTR_TIMESTAMP as 64-bit attributes using nla_put_u64_64bit(). On 32-bit architectures without CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS, nla_put_u64_64bit() inserts a 4-byte NET_DM_ATTR_PAD attribute before each 64-bit field to satisfy alignment requirements, making each attribute consume up to 16 bytes rather than the 12 bytes budgeted by nla_total_size(sizeof(u64)). The root cause is a buffer-size calculation error (functionally equivalent to CWE-131: Incorrect Calculation of Buffer Size) where the wrong size-estimation helper was used: nla_total_size() instead of nla_total_size_64bit(). When the actual serialization call subsequently invokes __nla_reserve() or skb_put() to write past the end of the under-sized SKB, the kernel's bounds-check fires as skb_over_panic(). CPE: cpe:2.3:a:linux:linux:*. The bug is architectural and compile-time configuration dependent, not present on 64-bit builds or on 32-bit builds with efficient unaligned access enabled.

RemediationAI

Upgrade to Linux kernel 7.1.6 (stable) or apply the fix included in 7.2-rc5. The upstream stable-tree fix commits are available at https://git.kernel.org/stable/c/4a9e30764e80693bcf875c776170edce20f94fe0 and https://git.kernel.org/stable/c/7089f7ab99c89f443c92d8fcc585e63f2727f0b3. Distribution vendors (Debian, Ubuntu, RHEL, SUSE, etc.) should be consulted for backported stable packages. For systems that cannot be immediately patched, the most effective compensating control is to ensure the drop_monitor kernel module is not loaded (modprobe -r drop_monitor) or is blocklisted; this completely eliminates the vulnerable code path at the cost of losing packet-drop telemetry. Where drop_monitor must remain active, restricting CAP_NET_ADMIN via namespace isolation, seccomp, or capability-bounding sets limits which processes can interact with the subsystem. 64-bit deployments require no action. No side effects are associated with removing drop_monitor on systems that do not rely on it.

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-68287 vulnerability details – vuln.today

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