HOMEVULNERABILITIESCVE-2026-23255
NONE

CVE-2026-23255

Published: March 18, 2026· Updated: Mar 19, 2026

EPSS:0.02%probability of exploitation in 30 daysPercentile:4.5th

Official Description

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

net: add proper RCU protection to /proc/net/ptype

Yin Fengwei reported an RCU stall in ptype_seq_show() and provided

a patch.

Real issue is that ptype_seq_next() and ptype_seq_show() violate

RCU rules.

ptype_seq_show() runs under rcu_read_lock(), and reads pt->dev

to get device name without any barrier.

At the same time, concurrent writers can remove a packet_type structure

(which is correctly freed after an RCU grace period) and clear pt->dev

without an RCU grace period.

Define ptype_iter_state to carry a dev pointer along seq_net_private:

struct ptype_iter_state {

struct seq_net_private p;

struct net_device *dev; // added in this patch

};

We need to record the device pointer in ptype_get_idx() and

ptype_seq_next() so that ptype_seq_show() is safe against

concurrent pt->dev changes.

We also need to add full RCU protection in ptype_seq_next().

(Missing READ_ONCE() when reading list.next values)

Many thanks to Dong Chenchen for providing a repro.

NVD Source

Technical Analysis

CVE-2026-23255 requires local access, meaning attackers must already have a foothold on the target system.

Exploitation requires some privileges, which limits the exposure to scenarios where an attacker has already gained initial access.

Affected Vendors & Products

Mentioned vendors (from description):
Linux
CPE data not yet available in NVD for this CVE.

Exploit & PoC Resources

NO KNOWN EXPLOITNo public exploit confirmed at this time
External links open in a new tab. Always verify in a controlled environment before use.

All References (2)

Quick Facts

CVE IDCVE-2026-23255
SeverityNONE
CISA KEVNo
EPSS (30d)0.02%
PublishedMar 18, 2026

Recommended Actions

  • Apply vendor patches immediately
  • Monitor CVE-2026-23255 in threat intel feeds
  • Review IDS/IPS signatures for exploitation attempts
Data sourced from NVD (NIST), CISA KEV, and EPSS (FIRST). Analysis generated by CTIWATCH.COM. CVE data is provided under the NVD usage policy.