Skip to main content

Linux Kernel CVE-2026-52986

| EUVDEUVD-2026-38854 CRITICAL
NULL Pointer Dereference (CWE-476)
2026-06-24 Linux GHSA-p6jx-f9x6-6955
Critical
Disputed · 9.8 Vendor: Linux
Share

Severity by source

Sources disagree (Medium–Critical)
Vendor (Linux) PRIMARY
9.8 CRITICAL
AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
vuln.today AI
4.8 MEDIUM

Network-reachable but requires the SIP helper enabled and a precisely boundary-aligned malformed packet (AC:H); impact is an out-of-bounds read (C:L) with possible instability (A:L), no integrity effect.

3.1 AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:L
4.0 AV:N/AC:H/AT:P/PR:N/UI:N/VC:L/VI:N/VA:L/SC:N/SI:N/SA:N
SUSE
7.5 HIGH
AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Red Hat
7.0 MEDIUM
qualitative

vuln.today treats the vendor’s rating as authoritative. A higher third-party CVSS (e.g. CISA-ADP) is shown for transparency but does not drive the headline severity.

CVSS VectorVendor: Linux

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
High

Lifecycle Timeline

5
Analysis Generated
Jun 28, 2026 - 08:41 vuln.today
CVSS changed
Jun 28, 2026 - 08:22 NVD
9.8 (CRITICAL)
Patch available
Jun 24, 2026 - 18:02 EUVD
CVE Published
Jun 24, 2026 - 16:29 cve.org
CRITICAL 9.8
CVE Published
Jun 24, 2026 - 16:29 cve.org
UNKNOWN (no severity yet)

DescriptionCVE.org

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

netfilter: nf_conntrack_sip: don't use simple_strtoul

Replace unsafe port parsing in epaddr_len(), ct_sip_parse_header_uri(), and ct_sip_parse_request() with a new sip_parse_port() helper that validates each digit against the buffer limit, eliminating the use of simple_strtoul() which assumes NUL-terminated strings.

The previous code dereferenced pointers without bounds checks after sip_parse_addr() and relied on simple_strtoul() on non-NUL-terminated skb data. A port that reaches the buffer limit without a trailing character is also rejected as malformed.

Also get rid of all simple_strtoul() usage in conntrack, prefer a stricter version instead. There are intentional changes:

  • Bail out if number is > UINT_MAX and indicate a failure, same for

too long sequences. While we do accept 05535 as port 5535, we will not accept e.g. 'sip:10.0.0.1:005060'. While its syntactically valid under RFC 3261, we should restrict this to not waste cycles when presented with malformed packets with 64k '0' characters.

  • Force base 10 in ct_sip_parse_numerical_param(). This is used to fetch

'expire=' and 'rports='; both are expected to use base-10.

  • In nf_nat_sip.c, only accept the parsed value if its within the 1k-64k

range.

  • epaddr_len now returns 0 if the port is invalid, as it already does

for invalid ip addresses. This is intentional. nf_conntrack_sip performs lots of guesswork to find the right parts of the message to parse. Being stricter could break existing setups. Connection tracking helpers are designed to allow traffic to pass, not to block it.

Based on an earlier patch from Jenny Guanni Qu <qguanni@gmail.com>.

AnalysisAI

Out-of-bounds memory access in the Linux kernel's netfilter SIP connection-tracking helper (nf_conntrack_sip) stems from parsing port numbers in non-NUL-terminated socket-buffer data with simple_strtoul() and dereferencing pointers after sip_parse_addr() without bounds checks. Remote attackers sending crafted SIP messages through a host where the SIP conntrack/NAT helper is active could read past the packet buffer, risking information disclosure or instability (tagged Information Disclosure). Despite a CVSS of 9.8, EPSS is only 0.18% (8th percentile) and no public exploit is identified at time of analysis; a vendor fix is available across multiple stable trees.

Technical ContextAI

The affected component is nf_conntrack_sip, the kernel's application-layer helper that inspects Session Initiation Protocol (SIP/VoIP) traffic so that connection tracking and NAT can correctly handle dynamically negotiated media ports. The flawed functions - epaddr_len(), ct_sip_parse_header_uri(), and ct_sip_parse_request() - used simple_strtoul(), which assumes a NUL-terminated C string, against raw skb (socket buffer) payload that is not guaranteed to be NUL-terminated. Combined with pointer dereferences after sip_parse_addr() lacking buffer-limit checks, this is an out-of-bounds read class issue (CWE not assigned in input; conceptually CWE-125 Out-of-bounds Read / improper input validation). The fix introduces a sip_parse_port() helper that validates each digit against the buffer boundary, forces base-10 parsing for 'expire='/'rports=' parameters, rejects values exceeding UINT_MAX or absurdly long zero-padded sequences, constrains nf_nat_sip.c to the 1k-64k port range, and returns 0 (allow-through) on malformed ports consistent with conntrack's permissive design. Per CPE the affected product is the Linux kernel (cpe:2.3:a:linux:linux:*).

RemediationAI

Vendor-released patch: update to a fixed Linux kernel build - 7.1 or 7.0.10 on the 7.x line, 6.18.33, 6.12.91, 6.6.141, or 6.1.175 on 6.x, and 5.15.209 or 5.10.258 on the LTS 5.x lines (apply your distribution's backport carrying the equivalent commits from git.kernel.org/stable/c/8cd0358379570003659186706e077929d6930c40 and siblings). If immediate patching is not possible, a concrete compensating control is to unload and blacklist the SIP helper where it is not needed - 'modprobe -r nf_conntrack_sip' and blacklist it (also disable any SIP ALG / 'CONFIG_NF_CONNTRACK_SIP' helper auto-assignment via nftables/iptables CT helper rules); the trade-off is that VoIP/SIP traffic crossing NAT may lose automatic media-port pinholing, breaking some SIP-over-NAT call flows. Where the helper must stay enabled, restrict which interfaces/sources can reach SIP services (filter UDP/TCP 5060 and related ports to trusted VoIP peers) to shrink the attack surface. Track advisories at https://nvd.nist.gov/vuln/detail/CVE-2026-52986 and https://vuldb.com/vuln/373335. Do not invent intermediate version numbers beyond those listed.

Vendor StatusVendor

SUSE

Severity: Important
Product Status
SUSE Linux Enterprise Desktop 15 SP7 Affected
SUSE Linux Enterprise Desktop 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 16.0 Affected

Share

CVE-2026-52986 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy