HOMEVULNERABILITIESCVE-2026-46165
NONE

CVE-2026-46165

Published: May 28, 2026· Updated: Jun 1, 2026

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

Official Description

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

openvswitch: vport: fix self-deadlock on release of tunnel ports

vports are used concurrently and protected by RCU, so netdev_put()

must happen after the RCU grace period. So, either in an RCU call or

after the synchronize_net(). The rtnl_delete_link() must happen under

RTNL and so can't be executed in RCU context. Calling synchronize_net()

while holding RTNL is not a good idea for performance and system

stability under load in general, so calling netdev_put() in RCU call

is the right solution here.

However,

when the device is deleted, rtnl_unlock() will call netdev_run_todo()

and block until all the references are gone. In the current code this

means that we never reach the call_rcu() and the vport is never freed

and the reference is never released, causing a self-deadlock on device

removal.

Fix that by moving the rcu_call() before the rtnl_unlock(), so the

scheduled RCU callback will be executed when synchronize_net() is

called from the rtnl_unlock()->netdev_run_todo() while the RTNL itself

is already released.

NVD Source

Technical Analysis

CVE-2026-46165 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 (6)

Quick Facts

CVE IDCVE-2026-46165
SeverityNONE
CISA KEVNo
EPSS (30d)0.02%
PublishedMay 28, 2026

Recommended Actions

  • Apply vendor patches immediately
  • Monitor CVE-2026-46165 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.