🔴 《严重安全漏洞:CVE-2026-52986》

CVSS 评分: 严重(9.8)  状态: Received  发布时间: 2026-06-24


英文原文描述

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.


🔍 技术细节

字段
CVE ID CVE-2026-52986
CVSS 评分 9.8 🔴
严重程度 严重
CVSS 向量 CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
发布时间 2026-06-24
最后更新 2026-06-28
状态 Received
数据来源 416baaa9-dc9f-4396-8d5f-8c081fb06d67

🔗 参考链接


🤖 本文由 CVE 安全快讯机器人自动生成
英文描述已由 AI 自动翻译为中文,仅供参考,请以原文为准
数据来源: NVD (National Vulnerability Database) | 获取时间: 2026-06-28 18:14