V4Bel

#3450of 56,333
78.7Total CVSS
Vulnerabilities · 10
Medium
1
High
8
Critical
1
PT-2026-55697
8.8
2026-06-12
Linux · Linux Kernel · CVE-2026-53359
**Name of the Vulnerable Software and Affected Versions** Linux kernel versions prior to 7.1.3 Linux kernel versions prior to 6.18.38 Linux kernel versions prior to 6.12.95 Linux kernel versions prior to 6.6.144 Linux kernel versions prior to 6.1.177 Linux kernel versions prior to 5.15.211 Linux kernel versions prior to 5.10.260 **Description** A use-after-free issue exists in the x86 shadow MMU of the Kernel-based Virtual Machine (KVM) hypervisor. The flaw occurs when the `rmap remove()` function fails to remove recorded entries because it does not compare the role of a page when a modified Page Directory Entry (PDE) points to a non-leaf page. Specifically, if a large 2MB page creates a `kvm mmu page` with `direct=1` and a new 4KB page requires `direct=0`, the `kvm mmu get child sp()` function reuses the page without verifying the role. Subsequently, `kvm mmu page get gfn()` computes the Guest Frame Number (GFN) incorrectly, leaving a surviving rmap entry after the shadow page is freed. This allows an attacker with root privileges in a guest VM to dereference a pointer in freed memory, potentially leading to a host kernel panic (denial of service) or guest-to-host escape with arbitrary code execution on the host. The issue affects both Intel and AMD x86 architectures and is particularly critical for multi-tenant public cloud environments using nested virtualization. **Recommendations** Update the Linux kernel to versions 7.1.3, 6.18.38, 6.12.95, 6.6.144, 6.1.177, 5.15.211, or 5.10.260. As a mitigation measure, disable nested virtualization by setting `kvm intel.nested=0` and `kvm amd.nested=0` in the kernel boot arguments.
PT-2026-40816
7.8
2026-05-13
Linux · Linux Kernel · CVE-2026-46300
**Name of the Vulnerable Software and Affected Versions** Linux kernel (affected versions not specified) **Description** A local privilege escalation issue exists in the Linux kernel networking stack, specifically within the XFRM ESP-in-TCP subsystem. The flaw originates in the `skb try coalesce()` function and the `skb segment()` function, where the kernel fails to correctly preserve the `SKBFL SHARED FRAG` flag when moving paged fragments between socket buffers or constructing GSO segments. This failure breaks the invariant relied upon by in-place writers; specifically, the `esp input()` function may incorrectly skip the `skb cow data()` check. Consequently, a low-privileged local attacker can perform unsafe in-place cryptographic processing (such as AES-GCM decryption) directly over page-cache-backed memory. This allows the attacker to write arbitrary bytes into the page cache of read-only files, such as `/usr/bin/su` or `/etc/passwd`, enabling the overwriting of privileged binaries to gain root privileges. This issue is a deterministic logic error and does not require a race condition. **Recommendations** - Update the Linux kernel to the latest patched version provided by the distribution. - As a temporary mitigation, disable the `esp4`, `esp6`, and `rxrpc` modules by running `sudo modprobe -r esp4 esp6 rxrpc` and blacklisting them. - Restrict unnecessary local shell access. - Harden containerized workloads. - Increase monitoring for abnormal privilege escalation activity.