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

目标: 1000 元 · 已筹: 1336

100%

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

一分钟漏洞结论

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

Linux kernel是美国Linux基金会的开源操作系统Linux所使用的内核。 Linux kernel存在安全漏洞,该漏洞源于kmalloc_reserve中整数溢出,可能导致内存分配失败。

CVSS 7.8 · High EPSS 0.14% · P4

可能的 ATT&CK 技术 1 AI

T1496 · Resource Hijacking

影响版本矩阵 11

厂商产品 版本范围状态
Linux Linux 0dbc898f5917c5a3bec6be19d9f5469cbc351a7d< 31cf7853a940181593e4472fc56f46574123f9f6 affected
12d6c1d3a2ad0c199ec57c201cdc71e8e157a232< e4ffc47a1c3e5d11a853aa178c9a5136e79412e9 affected
12d6c1d3a2ad0c199ec57c201cdc71e8e157a232< bf7da02d2b8faf324206e1cbe64a4813ff903cc1 affected
12d6c1d3a2ad0c199ec57c201cdc71e8e157a232< 915d975b2ffa58a14bfcf16fafe00c41315949ff affected
6.1.31< 6.1.54 affected
6.2 affected
< 6.2 unaffected
6.1.54≤ 6.1.* unaffected
… +3 条更多
获取后续新漏洞提醒 登录后订阅

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

漏洞信息

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

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

Vulnerability Title
net: deal with integer overflows in kmalloc_reserve()
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: net: deal with integer overflows in kmalloc_reserve() Blamed commit changed: ptr = kmalloc(size); if (ptr) size = ksize(ptr); size = kmalloc_size_roundup(size); ptr = kmalloc(size); This allowed various crash as reported by syzbot [1] and Kyle Zeng. Problem is that if @size is bigger than 0x80000001, kmalloc_size_roundup(size) returns 2^32. kmalloc_reserve() uses a 32bit variable (obj_size), so 2^32 is truncated to 0. kmalloc(0) returns ZERO_SIZE_PTR which is not handled by skb allocations. Following trace can be triggered if a netdev->mtu is set close to 0x7fffffff We might in the future limit netdev->mtu to more sensible limit (like KMALLOC_MAX_SIZE). This patch is based on a syzbot report, and also a report and tentative fix from Kyle Zeng. [1] BUG: KASAN: user-memory-access in __build_skb_around net/core/skbuff.c:294 [inline] BUG: KASAN: user-memory-access in __alloc_skb+0x3c4/0x6e8 net/core/skbuff.c:527 Write of size 32 at addr 00000000fffffd10 by task syz-executor.4/22554 CPU: 1 PID: 22554 Comm: syz-executor.4 Not tainted 6.1.39-syzkaller #0 Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 07/03/2023 Call trace: dump_backtrace+0x1c8/0x1f4 arch/arm64/kernel/stacktrace.c:279 show_stack+0x2c/0x3c arch/arm64/kernel/stacktrace.c:286 __dump_stack lib/dump_stack.c:88 [inline] dump_stack_lvl+0x120/0x1a0 lib/dump_stack.c:106 print_report+0xe4/0x4b4 mm/kasan/report.c:398 kasan_report+0x150/0x1ac mm/kasan/report.c:495 kasan_check_range+0x264/0x2a4 mm/kasan/generic.c:189 memset+0x40/0x70 mm/kasan/shadow.c:44 __build_skb_around net/core/skbuff.c:294 [inline] __alloc_skb+0x3c4/0x6e8 net/core/skbuff.c:527 alloc_skb include/linux/skbuff.h:1316 [inline] igmpv3_newpack+0x104/0x1088 net/ipv4/igmp.c:359 add_grec+0x81c/0x1124 net/ipv4/igmp.c:534 igmpv3_send_cr net/ipv4/igmp.c:667 [inline] igmp_ifc_timer_expire+0x1b0/0x1008 net/ipv4/igmp.c:810 call_timer_fn+0x1c0/0x9f0 kernel/time/timer.c:1474 expire_timers kernel/time/timer.c:1519 [inline] __run_timers+0x54c/0x710 kernel/time/timer.c:1790 run_timer_softirq+0x28/0x4c kernel/time/timer.c:1803 _stext+0x380/0xfbc ____do_softirq+0x14/0x20 arch/arm64/kernel/irq.c:79 call_on_irq_stack+0x24/0x4c arch/arm64/kernel/entry.S:891 do_softirq_own_stack+0x20/0x2c arch/arm64/kernel/irq.c:84 invoke_softirq kernel/softirq.c:437 [inline] __irq_exit_rcu+0x1c0/0x4cc kernel/softirq.c:683 irq_exit_rcu+0x14/0x78 kernel/softirq.c:695 el0_interrupt+0x7c/0x2e0 arch/arm64/kernel/entry-common.c:717 __el0_irq_handler_common+0x18/0x24 arch/arm64/kernel/entry-common.c:724 el0t_64_irq_handler+0x10/0x1c arch/arm64/kernel/entry-common.c:729 el0t_64_irq+0x1a0/0x1a4 arch/arm64/kernel/entry.S:584
来源: CVE Program / CVE List V5
CVSS Information
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
来源: 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存在安全漏洞,该漏洞源于kmalloc_reserve中整数溢出,可能导致内存分配失败。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商 产品 影响版本 CPE 订阅
Linux Linux 0dbc898f5917c5a3bec6be19d9f5469cbc351a7d ~ 31cf7853a940181593e4472fc56f46574123f9f6 -
Linux Linux 6.2 -

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

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

未找到公开 POC。

登录以生成 AI POC

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

登录查看更多情报信息。

同批安全公告 · Linux · 2025-12-08 · 共 82 条

CVE-2023-53751 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2025-40320 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2023-53769 9.3 CRITICAL Linux kernel 安全漏洞
CVE-2025-40318 8.8 HIGH Linux kernel 安全漏洞
CVE-2023-53764 8.8 HIGH Linux kernel 安全漏洞
CVE-2023-53762 8.8 HIGH Linux kernel 安全漏洞
CVE-2025-40292 8.4 HIGH Linux kernel 安全漏洞
CVE-2025-40309 8.0 HIGH Linux kernel 安全漏洞
CVE-2025-40302 7.8 HIGH Linux kernel 安全漏洞
CVE-2023-53763 7.8 HIGH Linux kernel 安全漏洞
CVE-2023-53768 7.8 HIGH Linux kernel 安全漏洞
CVE-2025-40297 7.8 HIGH Linux kernel 安全漏洞
CVE-2022-50630 7.8 HIGH Linux kernel 安全漏洞
CVE-2022-50623 7.8 HIGH Linux kernel 安全漏洞
CVE-2023-53759 7.8 HIGH Linux kernel 安全漏洞
CVE-2025-40317 7.8 HIGH Linux kernel 安全漏洞
CVE-2025-40319 7.8 HIGH Linux kernel 安全漏洞
CVE-2023-53747 7.8 HIGH Linux kernel 安全漏洞
CVE-2025-40323 7.8 HIGH Linux kernel 安全漏洞
CVE-2023-53753 7.8 HIGH Linux kernel 安全漏洞

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

IV. Related Vulnerabilities

V. Comments for CVE-2023-53752

暂无评论


发表评论