Skip to main content

Linux Kernel CVE-2026-53219

| EUVDEUVD-2026-39310 MEDIUM
2026-06-25 416baaa9-dc9f-4396-8d5f-8c081fb06d67 GHSA-gv3c-2ghh-53g2
5.5
CVSS 3.1 · NVD
Share

Severity by source

NVD PRIMARY
5.5 MEDIUM
AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
vuln.today AI
3.3 LOW

Local netfilter ioctl leaks one kernel virtual address yielding C:L; no crash or integrity change occurs, so A:N and I:N are correct.

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

Primary rating from NVD.

CVSS VectorNVD

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

Lifecycle Timeline

5
Analysis Generated
Jul 02, 2026 - 21:09 vuln.today
CVSS changed
Jul 02, 2026 - 21:07 NVD
5.5 (MEDIUM)
Patch available
Jun 25, 2026 - 10:32 EUVD
CVE Published
Jun 25, 2026 - 09:16 cve.org
UNKNOWN (no severity yet)
CVE Published
Jun 25, 2026 - 09:16 nvd
MEDIUM 5.5

DescriptionNVD

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

netfilter: x_tables: avoid leaking percpu counter pointers

The native and compat get-entries paths copy the fixed rule entry header from the kernelized rule blob to userspace before overwriting the entry's counter fields with a sanitized counter snapshot.

On SMP kernels, entry->counters.pcnt contains the percpu allocation address used by x_tables rule counters. A caller can provide a userspace buffer that faults during the initial fixed-header copy after pcnt has been copied but before the later sanitized counter copy runs. The syscall then returns -EFAULT while leaving the raw percpu pointer in userspace.

Copy only the fixed entry prefix before counters from the kernelized rule blob, then copy the sanitized counter snapshot into the counter field. Apply this ordering to the IPv4, IPv6, and ARP native and compat get-entries implementations so a fault cannot expose the internal percpu counter pointer.

AnalysisAI

Netfilter x_tables in the Linux kernel leaks raw percpu counter pointer addresses to userspace on SMP systems via a crafted fault-window attack against the get-entries path. A local user with netfilter access can engineer a userspace buffer that triggers a page fault after the kernel copies the internal percpu allocation pointer (pcnt) but before the sanitized counter snapshot overwrites it, causing the syscall to return -EFAULT while leaving the raw kernel virtual address exposed in the caller's buffer. No public exploit is identified at time of analysis and EPSS sits at 0.18% (8th percentile), but the leaked percpu address functions as a KASLR bypass primitive chainable with a second vulnerability to achieve privilege escalation.

Technical ContextAI

The Linux kernel's netfilter framework uses x_tables to manage IPv4, IPv6, and ARP firewall rules (iptables, ip6tables, arptables). Rule entries carry per-CPU counters (pcnt) for efficient packet and byte accounting on SMP systems, where pcnt holds the virtual address of the percpu memory allocation. When userspace invokes the get-entries operation, the kernel serializes the rule entry header - including the raw pcnt field - into the caller's buffer before overwriting the counter fields with a sanitized snapshot. The race window exists because the copy is not atomic: if the userspace buffer is arranged (e.g., via mprotect) so that the page covering the counter offset faults after pcnt lands in user memory but before the sanitized overwrite, the syscall aborts with -EFAULT and the raw kernel virtual address remains readable. The fix reorders the copy: only the pre-counter header prefix is written first, then the sanitized counter is placed directly, ensuring the raw percpu pointer never transiently exists in userspace. Affected CPE is cpe:2.3:o:linux:linux_kernel:*. NVD does not assign a CWE, but the vulnerability is characteristic of CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor).

RemediationAI

Upgrade to the patched kernel for the active stable branch: 5.10.259, 5.15.210, 6.1.176, 6.6.143, 6.12.94, 6.18.36, 7.0.13, or 7.1 as confirmed by EUVD-2026-39310. Kernel distributors (RHEL, Ubuntu, Debian, SUSE) will backport these stable commits; track distribution security advisories for the exact package version. If an immediate kernel upgrade is not feasible, the most effective compensating control is disabling unprivileged user namespaces (sysctl -w kernel.unprivileged_userns_clone=0 on distributions that support it, or sysctl -w user.max_user_namespaces=0 on mainline), which removes the primary privilege path to CAP_NET_ADMIN for unprivileged local users; note this will break rootless container runtimes (Docker, Podman) relying on network namespaces. Restricting CAP_NET_ADMIN assignment via systemd service hardening (CapabilityBoundingSet) reduces the attack surface for service accounts. Advisory and commit references: https://nvd.nist.gov/vuln/detail/CVE-2026-53219 and the NVD-listed kernel.org stable commits.

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

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