Fragnesia (CVE-2026-46300) Linux Kernel XFRM ESP-in-TCP Loca...#2238
Open
carlospolop wants to merge 1 commit into
Open
Fragnesia (CVE-2026-46300) Linux Kernel XFRM ESP-in-TCP Loca...#2238carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://www.tenable.com/blog/fragnesia-cve-2026-46300-faq-about-new-linux-kernel-xfrm-esp-in-tcp-priv-esc Content Categories: Based on the analysis, this content was categorized under "Linux Hardening -> Linux Privilege Escalation -> Linux Kernel / Page Cache Corruption / XFRM ESP-in-TCP Fragnesia CVE-2026-46300". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
Overview
Fragnesia, tracked as CVE-2026-46300, is a high-severity Linux kernel local privilege escalation vulnerability in the kernel XFRM ESP-in-TCP subsystem. Tenable describes it as a new Linux kernel LPE affecting the same general subsystem abused by Dirty Frag, but requiring a separate kernel patch. It was publicly disclosed on May 13, 2026 by William Bowling of V12 Security, togeth...🔧 Technical Details
Page-cache corruption through lost shared-buffer metadata: A kernel subsystem can become exploitable when it coalesces or transforms buffers but fails to preserve metadata that describes ownership or sharing. In Fragnesia,
skb_try_coalesce()dropsSKBFL_SHARED_FRAG, so later ESP-in-TCP processing treats shared file-cache-backed pages as private writable packet data. The general auditing lesson is to inspect zero-copy networking, skb coalescing, crypto, decryption, compression, and in-place transformation paths for lost "shared", "readonly", or "page-cache-backed" flags before any write occurs.Namespace-assisted access to privileged kernel attack surface: The exploit pattern uses unprivileged user and network namespaces to obtain namespace-scoped
CAP_NET_ADMIN. This does not grant host root directly, but it exposes complex networking/XFRM functionality to a local user. In similar Linux LPE research, unpri...🤖 Agent Actions
Done.
Updated:
src/linux-hardening/privilege-escalation/write-to-root.mdAdded:
CAP_NET_ADMINValidation:
mdbook buildcould not be run becausemdbookis not installed in this environment (EXIT:127)This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.