Fragnesia and ssh-keysign-pwn: Two New Linux Kernel Vulnerabilities Explained
Two recently disclosed Linux kernel flaws—Fragnesia (CVE‑2026‑46300) and ssh‑keysign‑pwn (CVE‑2026‑46333)—allow local attackers to escalate to root or read sensitive files like SSH host keys and /etc/shadow; administr... Fragnesia exploits a bug in the kernel’s XFRM ESP‑in‑TCP networking path to manipulate the page...
Two recently disclosed Linux kernel flaws—Fragnesia (CVE‑2026‑46300) and ssh‑keysign‑pwn (CVE‑2026‑46333)—allow local attackers to escalate to root or read sensitive files like SSH host keys and /etc/shadow; administr...
Fragnesia exploits a bug in the kernel’s XFRM ESP‑in‑TCP networking path to manipulate the page cache and gain root privileges, while ssh‑keysign‑pwn abuses ptrace access‑control logic to leak root‑owned secrets.
Both vulnerabilities emerged during a rapid cluster of Linux kernel disclosures following Dirty Frag, highlighting how attackers can chain post‑compromise bugs once they obtain local access.
What are the newly disclosed Linux kernel vulnerabilities Fragnesia (CVE-2026-46300) and ssh-keysign-pwn (CVE-2026-46333), how do they let uTwo newly disclosed Linux kernel vulnerabilities—Fragnesia and ssh‑keysign‑pwn—allow local attackers to escalate privileges or access sensitive secrets.
AI Prompt
Create a landscape editorial hero image for this Studio Global article: What are the newly disclosed Linux kernel vulnerabilities Fragnesia (CVE-2026-46300) and ssh-keysign-pwn (CVE-2026-46333), how do they let u. Article summary: Fragnesia (CVE-2026-46300) is a newly disclosed Linux kernel local privilege-escalation flaw that lets an unprivileged local user become root through the kernel’s XFRM ESP-in-TCP networking path, and it has a public proo. Topic tags: general, general web. Reference image context from search candidates: Reference image 1: visual subject "CVE-2026-46300: Fragnesia Linux Kernel Flaw Grants Root via Page Cache Corruption. The CVE-2026-46300 vulnerability, nicknamed Fragnesia, is a high-severity Linux kernel flaw in th" source context "CVE-2026-46300: Fragnesia Linux Kernel Flaw - SOC Prime" Reference image 2: visual subject "# Fragnesia: New Linux Kernel Flaw Raise
openai.com
Recent disclosures have revealed two serious Linux kernel vulnerabilities that can be exploited after an attacker gains a foothold on a system. Known as Fragnesia (CVE‑2026‑46300) and ssh‑keysign‑pwn (CVE‑2026‑46333), these bugs allow unprivileged local users to escalate privileges or access sensitive data that should be restricted to root. Administrators across major Linux distributions have been urged to apply kernel updates quickly.
Fragnesia (CVE‑2026‑46300): Local Root via the Networking Stack
Fragnesia is a local privilege‑escalation vulnerability in the Linux kernel’s XFRM ESP‑in‑TCP networking subsystem. The bug allows an unprivileged user to manipulate the kernel’s page cache and achieve root privileges on vulnerable systems .
Studio Global AI
Continue your research
This page includes a source-backed answer you can continue inside Studio Global.
What is the short answer to "Fragnesia and ssh-keysign-pwn: Two New Linux Kernel Vulnerabilities Explained"?
Two recently disclosed Linux kernel flaws—Fragnesia (CVE‑2026‑46300) and ssh‑keysign‑pwn (CVE‑2026‑46333)—allow local attackers to escalate to root or read sensitive files like SSH host keys and /etc/shadow; administr...
What are the key points to validate first?
Two recently disclosed Linux kernel flaws—Fragnesia (CVE‑2026‑46300) and ssh‑keysign‑pwn (CVE‑2026‑46333)—allow local attackers to escalate to root or read sensitive files like SSH host keys and /etc/shadow; administr... Fragnesia exploits a bug in the kernel’s XFRM ESP‑in‑TCP networking path to manipulate the page cache and gain root privileges, while ssh‑keysign‑pwn abuses ptrace access‑control logic to leak root‑owned secrets.
What should I do next in practice?
Both vulnerabilities emerged during a rapid cluster of Linux kernel disclosures following Dirty Frag, highlighting how attackers can chain post‑compromise bugs once they obtain local access.
The vulnerability is closely related to the earlier Dirty Frag class of bugs affecting the Linux networking stack. However, Fragnesia is a separate flaw that requires its own patch even on systems that already fixed Dirty Frag .
Researchers showed that the exploit can:
Abuse a logic flaw in the ESP/XFRM networking path
Modify cached memory pages associated with read‑only files
Convert that corruption into arbitrary writes that enable privilege escalation
Successful exploitation allows a local user to become root, giving full system control . A public proof‑of‑concept exploit has been released, confirming that the attack can work on real systems including Ubuntu installations .
The second vulnerability, ssh‑keysign‑pwn, targets the Linux kernel’s ptrace access‑control logic. Instead of directly granting root privileges, it enables information disclosure, allowing an unprivileged user to read files normally restricted to root .
The flaw stems from incorrect handling of a process property called “dumpability” inside ptrace_may_access()—a function used to determine whether one process can inspect another’s memory . When the logic is applied to certain tasks without associated memory‑management structures, access checks can fail to enforce required privileges.
In practice, attackers can exploit this to steal highly sensitive data such as:
SSH host private keys from /etc/ssh/
Password hashes from /etc/shadow
Public proof‑of‑concept exploits target the setuid‑root helper ssh-keysign, which opens host key files before dropping privileges; attackers attach at just the right moment and extract the open file descriptor or process memory .
The bug was disclosed by security researchers and fixed in multiple stable Linux kernel releases, including 7.0.8, 6.18.31, 6.12.89, 6.6.139, 6.1.173, 5.15.207, and 5.10.256.
Why These Bugs Are Part of a Broader Wave
Fragnesia and ssh‑keysign‑pwn appeared during an unusual cluster of Linux kernel vulnerability disclosures. Security researchers and vendors noted that several flaws—including Dirty Frag and Copyfail‑related bugs—were reported within roughly two weeks, all affecting areas that enable local privilege escalation after initial compromise .
Many of these issues share characteristics:
They target core kernel subsystems such as networking or process tracing.
They assume the attacker already has local unprivileged code execution.
They allow attackers to escape containment and gain root access or sensitive data.
This pattern matters because once attackers obtain a low‑privilege foothold—through a web application compromise, container breakout, or stolen credentials—these kernel bugs can provide a straightforward path to full system control.
Patches and Immediate Actions for Administrators
Because these are kernel vulnerabilities, mitigation requires installing patched kernels and rebooting into the updated version.
Key remediation steps include:
Update the kernel immediately. Most distributions have released patched packages; for example, AlmaLinux deployed updated kernels addressing both CVEs via normal system updates .
Reboot after updating. Installing the patch without rebooting leaves the vulnerable kernel running.
Verify the running kernel version using uname -r and ensure it matches a fixed release.
For environments where patching cannot happen immediately, temporary mitigations may reduce exposure.
Temporary mitigations for Fragnesia
If the vulnerable networking modules are not required, administrators can disable them until patched kernels are installed. Suggested mitigations include unloading or blocking modules such as:
esp4
esp6
rxrpc
These mitigations reduce the vulnerable attack surface but may disable IPsec‑related functionality .
Temporary mitigations for ssh‑keysign‑pwn
Some administrators have used stricter ptrace restrictions to block known exploits, such as increasing the kernel setting:
kernel.yama.ptrace_scope=2 or 3
However, this can break debugging tools like strace or gdb, and it should be considered only a temporary workaround until patched kernels are deployed .
The Bottom Line
Fragnesia and ssh‑keysign‑pwn highlight how dangerous post‑compromise kernel vulnerabilities can be. Even if an attacker initially gains only low‑privilege access, these bugs can turn that foothold into full root control or expose critical secrets.
For most organizations, the correct response is straightforward:
Apply vendor kernel updates that fix CVE‑2026‑46300 and CVE‑2026‑46333.
Reboot into the patched kernel.
Rotate sensitive secrets such as SSH host keys if compromise is suspected.
With proof‑of‑concept exploits already public, delaying patch deployment significantly increases the risk of real‑world exploitation.