CVE-2026-46331: net/sched: fix pedit partial COW leading to page cache corruption
In the Linux kernel, the following vulnerability has been resolved:
net/sched: fix pedit partial COW leading to page cache corruption
tcf_pedit_act() computes the COW range for skb_ensure_writable()
once before the key loop using tcfp_off_max_hint, but the hint does
not account for the runtime header offset added by typed keys. This
can leave part of the write region un-COW'd.
Fix by moving skb_ensure_writable() inside the per-key loop where
the actual write offset is known, and add overflow checking on the
offset arithmetic. For negative offsets (e.g. Ethernet header edits
at ingress), use skb_cow() to COW the headroom instead. Guard
offset_valid() against INT_MIN, where negation is undefined.
Security readout for executives and security teams
Plain-English summary
This is a high-severity Linux kernel flaw that can let a local, low-privileged attacker corrupt kernel-managed memory through packet editing behavior. The business risk is strongest on shared Linux hosts, container platforms, and systems where local users are not fully trusted.
Executive priority
Treat as priority patching for Linux fleets with shared-user, hosting, CI, or container workloads. It is not listed in KEV, but the impact rating and public exploit reference justify accelerated remediation.
Technical view
The flaw is in net/sched pedit handling. tcf_pedit_act() calculated the writable copy-on-write range before knowing per-key runtime offsets, leaving part of the write region outside COW protection. Upstream fixes move skb_ensure_writable() into the key loop, add offset overflow checks, and handle negative offsets with skb_cow().
Likely exposure
Exposure is Linux kernel dependent. The bundle lists Linux as affected and includes upstream stable fixes plus Red Hat advisories. Validate against your distribution kernel, not only upstream version strings, because vendor backports may change exposure.
Exploitation context
The CVSS vector is local, low complexity, low privileges, no user interaction, with high confidentiality, integrity, and availability impact. KEV is false. A public GitHub reference is tagged exploit, but the supplied sources do not prove active in-the-wild exploitation.
Researcher notes
The core issue is partial COW coverage in pedit writes caused by offset calculation before runtime typed-key offsets. Avoid assuming every listed upstream version maps directly to a vendor package; confirm backports and advisory status per distribution.
Mitigation direction
Apply vendor kernel updates that address CVE-2026-46331.
Use Red Hat errata if running affected Red Hat products.
Track upstream stable commits if vendor packages are pending.
Review local user and container privilege exposure until patched.
Follow vendor guidance for any product-specific mitigations.
Validation and detection
Inventory Linux kernels across servers, containers hosts, and appliances.
Compare installed vendor kernel packages against advisory fixed versions.
Confirm whether Red Hat errata apply to your product stream.
Verify upstream stable fix commits are present or backported.
Check vulnerability scanner results against vendor advisories.
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cwe · low confidence lookup
CWE-190: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
2CVSS vectors
5Timeline events
2ADP providers
44Source links
SSVC decision data
CISA-ADPCISA Coordinator
Timestamp
Version
2.0.3
Exploitation: pocAutomatable: noTechnical Impact: total
CVSS vector scores
2 official scores
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-190 · source CWE mapping
Integer Overflow or Wraparound
Integer Overflow or Wraparound represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.
Out-of-bounds Write represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.