目标达成 感谢每一位支持者 — 我们达成了 100% 目标!

目标: 1000 元 · 已筹: 1336

100%

CVE-2023-53489— Linux kernel 安全漏洞

一分钟漏洞结论

影响对象
Linux Linux
利用判断
尚无明确在野利用证据,仍需结合暴露面评估
建议动作
优先检查厂商安全公告和参考链接中的修复版本;无法立即升级时,限制受影响服务暴露并加强监测。

Linux kernel是美国Linux基金会的开源操作系统Linux所使用的内核。 Linux kernel存在安全漏洞,该漏洞源于TCP/UDP协议中零拷贝SKB和TX时间戳处理不当,可能导致内存泄漏。

AI 预测 7.8 利用难度: 较易 EPSS 0.15% · P5

可能的 ATT&CK 技术 1 AI

T1496 · Resource Hijacking

影响版本矩阵 20

厂商产品 版本范围状态
Linux Linux f214f915e7db99091f1312c48b30928c1e0c90b7< 281072fb2a7294cde7acbf5375b879f40a8001b7 affected
f214f915e7db99091f1312c48b30928c1e0c90b7< 1f69c086b20e27763af28145981435423f088268 affected
f214f915e7db99091f1312c48b30928c1e0c90b7< 602fa8af44fd55a58f9e94eb673e8adad2c6cc46 affected
f214f915e7db99091f1312c48b30928c1e0c90b7< 230a5ed7d813fb516de81d23f09d7506753e41e9 affected
f214f915e7db99091f1312c48b30928c1e0c90b7< 43e4197dd5f6b474a8b16f8b6a42cd45cf4f9d1a affected
f214f915e7db99091f1312c48b30928c1e0c90b7< cb52e7f24c1d01a536a847dff0d1d95889cc3b5c affected
f214f915e7db99091f1312c48b30928c1e0c90b7< 30290f210ba7426ff7592fe2eb4114b1b5bad219 affected
f214f915e7db99091f1312c48b30928c1e0c90b7< 426384dd4980040651536fef5feac4dcc4d7ee4e affected
… +12 条更多
获取后续新漏洞提醒 登录后订阅

一、 漏洞 CVE-2023-53489 基础信息

漏洞信息

对漏洞内容有疑问?看看神龙的深度分析是否有帮助!
查看神龙十问 ↗

尽管我们使用了先进的大模型技术,但其输出仍可能包含不准确或过时的信息。神龙努力确保数据的准确性,但请您根据实际情况进行核实和判断。

Vulnerability Title
tcp/udp: Fix memleaks of sk and zerocopy skbs with TX timestamp.
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: tcp/udp: Fix memleaks of sk and zerocopy skbs with TX timestamp. syzkaller reported [0] memory leaks of an UDP socket and ZEROCOPY skbs. We can reproduce the problem with these sequences: sk = socket(AF_INET, SOCK_DGRAM, 0) sk.setsockopt(SOL_SOCKET, SO_TIMESTAMPING, SOF_TIMESTAMPING_TX_SOFTWARE) sk.setsockopt(SOL_SOCKET, SO_ZEROCOPY, 1) sk.sendto(b'', MSG_ZEROCOPY, ('127.0.0.1', 53)) sk.close() sendmsg() calls msg_zerocopy_alloc(), which allocates a skb, sets skb->cb->ubuf.refcnt to 1, and calls sock_hold(). Here, struct ubuf_info_msgzc indirectly holds a refcnt of the socket. When the skb is sent, __skb_tstamp_tx() clones it and puts the clone into the socket's error queue with the TX timestamp. When the original skb is received locally, skb_copy_ubufs() calls skb_unclone(), and pskb_expand_head() increments skb->cb->ubuf.refcnt. This additional count is decremented while freeing the skb, but struct ubuf_info_msgzc still has a refcnt, so __msg_zerocopy_callback() is not called. The last refcnt is not released unless we retrieve the TX timestamped skb by recvmsg(). Since we clear the error queue in inet_sock_destruct() after the socket's refcnt reaches 0, there is a circular dependency. If we close() the socket holding such skbs, we never call sock_put() and leak the count, sk, and skb. TCP has the same problem, and commit e0c8bccd40fc ("net: stream: purge sk_error_queue in sk_stream_kill_queues()") tried to fix it by calling skb_queue_purge() during close(). However, there is a small chance that skb queued in a qdisc or device could be put into the error queue after the skb_queue_purge() call. In __skb_tstamp_tx(), the cloned skb should not have a reference to the ubuf to remove the circular dependency, but skb_clone() does not call skb_copy_ubufs() for zerocopy skb. So, we need to call skb_orphan_frags_rx() for the cloned skb to call skb_copy_ubufs(). [0]: BUG: memory leak unreferenced object 0xffff88800c6d2d00 (size 1152): comm "syz-executor392", pid 264, jiffies 4294785440 (age 13.044s) hex dump (first 32 bytes): 00 00 00 00 00 00 00 00 cd af e8 81 00 00 00 00 ................ 02 00 07 40 00 00 00 00 00 00 00 00 00 00 00 00 ...@............ backtrace: [<0000000055636812>] sk_prot_alloc+0x64/0x2a0 net/core/sock.c:2024 [<0000000054d77b7a>] sk_alloc+0x3b/0x800 net/core/sock.c:2083 [<0000000066f3c7e0>] inet_create net/ipv4/af_inet.c:319 [inline] [<0000000066f3c7e0>] inet_create+0x31e/0xe40 net/ipv4/af_inet.c:245 [<000000009b83af97>] __sock_create+0x2ab/0x550 net/socket.c:1515 [<00000000b9b11231>] sock_create net/socket.c:1566 [inline] [<00000000b9b11231>] __sys_socket_create net/socket.c:1603 [inline] [<00000000b9b11231>] __sys_socket_create net/socket.c:1588 [inline] [<00000000b9b11231>] __sys_socket+0x138/0x250 net/socket.c:1636 [<000000004fb45142>] __do_sys_socket net/socket.c:1649 [inline] [<000000004fb45142>] __se_sys_socket net/socket.c:1647 [inline] [<000000004fb45142>] __x64_sys_socket+0x73/0xb0 net/socket.c:1647 [<0000000066999e0e>] do_syscall_x64 arch/x86/entry/common.c:50 [inline] [<0000000066999e0e>] do_syscall_64+0x38/0x90 arch/x86/entry/common.c:80 [<0000000017f238c1>] entry_SYSCALL_64_after_hwframe+0x63/0xcd BUG: memory leak unreferenced object 0xffff888017633a00 (size 240): comm "syz-executor392", pid 264, jiffies 4294785440 (age 13.044s) hex dump (first 32 bytes): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 00 00 00 00 00 00 00 00 00 2d 6d 0c 80 88 ff ff .........-m..... backtrace: [<000000002b1c4368>] __alloc_skb+0x229/0x320 net/core/skbuff.c:497 [<00000000143579a6>] alloc_skb include/linux/skbuff.h:1265 [inline] [<00000000143579a6>] sock_omalloc+0xaa/0x190 net/core/sock.c:2596 [<00000000be626478>] msg_zerocopy_alloc net/core/skbuff.c:1294 [inline] [<00000000be626478>] ---truncated---
来源: CVE Program / CVE List V5
CVSS Information
N/A
来源: CVE Program / CVE List V5
Vulnerability Type
N/A
来源: CVE Program / CVE List V5
Vulnerability Title
Linux kernel 安全漏洞
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Description
Linux kernel是美国Linux基金会的开源操作系统Linux所使用的内核。 Linux kernel存在安全漏洞,该漏洞源于TCP/UDP协议中零拷贝SKB和TX时间戳处理不当,可能导致内存泄漏。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商 产品 影响版本 CPE 订阅
Linux Linux f214f915e7db99091f1312c48b30928c1e0c90b7 ~ 281072fb2a7294cde7acbf5375b879f40a8001b7 -
Linux Linux 4.14 -

二、漏洞 CVE-2023-53489 的公开POC

# POC 描述 源链接 神龙链接
AI 生成 POC 高级

未找到公开 POC。

登录以生成 AI POC

三、漏洞 CVE-2023-53489 的情报信息

登录查看更多情报信息。

同批安全公告 · Linux · 2025-10-01 · 共 169 条

CVE-2023-53517 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2023-53454 8.8 HIGH Linux kernel 安全漏洞
CVE-2025-39918 8.8 HIGH Linux kernel 安全漏洞
CVE-2025-39919 8.8 HIGH Linux kernel 安全漏洞
CVE-2022-50442 8.4 HIGH Linux kernel 安全漏洞
CVE-2023-53493 8.4 HIGH Linux kernel 安全漏洞
CVE-2022-50421 7.8 HIGH Linux kernel 安全漏洞
CVE-2023-53484 7.8 HIGH Linux kernel 安全漏洞
CVE-2022-50440 7.8 HIGH Linux kernel 安全漏洞
CVE-2023-53465 7.8 HIGH Linux kernel 安全漏洞
CVE-2025-39924 7.8 HIGH Linux kernel 安全漏洞
CVE-2023-53510 7.8 HIGH Linux kernel 安全漏洞
CVE-2022-50454 7.8 HIGH Linux kernel 安全漏洞
CVE-2025-39927 7.8 HIGH Linux kernel 安全漏洞
CVE-2023-53506 7.8 HIGH Linux kernel 安全漏洞
CVE-2022-50437 7.8 HIGH Linux kernel 安全漏洞
CVE-2023-53495 7.8 HIGH Linux kernel 安全漏洞
CVE-2023-53494 7.8 HIGH Linux kernel 安全漏洞
CVE-2022-50432 7.8 HIGH Linux kernel 安全漏洞
CVE-2023-53492 7.8 HIGH Linux kernel 安全漏洞

显示前 20 条,共 169 条。 查看全部 &rarr; →

IV. Related Vulnerabilities

V. Comments for CVE-2023-53489

暂无评论


发表评论