HOMEVULNERABILITIESCVE-2026-53337
NONE

CVE-2026-53337

Published: July 1, 2026· Updated: Jul 1, 2026

EPSS:0.16%probability of exploitation in 30 daysPercentile:6.0th

Official Description

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

net: bonding: fix NULL pointer dereference in bond_do_ioctl()

In bond_do_ioctl(), slave_dev is obtained via __dev_get_by_name() which

can return NULL if the requested interface name does not exist. However,

the subsequent slave_dbg() call is placed before the NULL check:

slave_dev = __dev_get_by_name(net, ifr->ifr_slave);

slave_dbg(bond_dev, slave_dev, "slave_dev=%p:\n", slave_dev); //here

if (!slave_dev)

return -ENODEV;

The slave_dbg() macro expands to netdev_dbg(bond_dev, "(slave %s): " fmt,

(slave_dev)->name, ...) which unconditionally dereferences slave_dev->name

before the NULL check is performed. This results in a NULL pointer

dereference kernel oops when a user calls bonding ioctl (e.g.

SIOCBONDENSLAVE, SIOCBONDRELEASE, etc.) with a non-existent slave

interface name.

This is reachable from userspace via the bonding ioctl interface with

CAP_NET_ADMIN capability, making it a potential local denial-of-service

vector.

Fix by moving the slave_dbg() call after the NULL check.

NVD Source

Technical Analysis

CVE-2026-53337 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 (8)

Quick Facts

CVE IDCVE-2026-53337
SeverityNONE
CISA KEVNo
EPSS (30d)0.16%
PublishedJul 1, 2026

Recommended Actions

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