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

目标: 1000 元 · 已筹: 1336

100%

CVE-2026-90246— AppArmor 标签验证整数溢出

一分钟漏洞结论

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

在 Linux 内核中,已修复以下漏洞: apparmor:修复 verify_tags() 边界检查中的整数溢出 verify_tags() 用于验证从策略 blob 中解包的标签集(tagset)表。 对于每个标签集,它读取一个计数值,并检查按该计数推进索引后是否仍位于 sets.table[] 范围内: 由于 i、cnt 和 sets.size 均为 u32 类型,表达式 i + cnt 在 32 位下会按模 2^32 回绕。 sets.table[] 由 unpack_tagsets() 中的 aa_unp

AI 预测 5.7 利用难度: 中等
获取后续新漏洞提醒 登录后订阅

一、 漏洞 CVE-2026-90246 基础信息

漏洞信息

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

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

Vulnerability Title
apparmor: fix integer overflow in verify_tags() bounds check
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: apparmor: fix integer overflow in verify_tags() bounds check verify_tags() validates the tagset table unpacked from a policy blob. For each set it reads a count and checks that advancing the index by that count stays inside sets.table[]: u32 cnt = tags->sets.table[i]; if (i+cnt >= tags->sets.size) { i, cnt and sets.size are all u32, so i+cnt is evaluated modulo 2^32. sets.table[] is filled by unpack_tagsets() with aa_unpack_u32(), so every entry is a raw unbounded 32-bit word taken from the policy blob, and verify_tags() is the function that is supposed to validate it. A count close to U32_MAX makes the sum wrap to a small value, the guard passes, and the inner loop then walks sets.table[++i] past the end of the kcalloc(size, sizeof(u32)) allocation. Note that sets.size is bounded by 65535, because unpack_tagsets() reads it with aa_unpack_array() as a u16, so the wrap cannot be reached by growing the table; it is reached purely through the attacker-supplied count. With sets.size = 2 and sets.table = { 0, 0xffffffff }: i = 0: cnt = 0, guard 0 + 0 >= 2 is false, inner loop does not run i = 1: cnt = 0xffffffff, guard (1 + 0xffffffff) mod 2^32 == 0 >= 2 is false, so the guard is bypassed and the inner loop reads sets.table[2] -- one element past a two element allocation The walk continues until an out-of-bounds value happens to be >= hdrs.size or the access faults, so a crafted policy yields an out-of-bounds read on the policy load path (aa_replace_profiles -> aa_unpack -> unpack_policydb -> unpack_tags -> verify_tags). unpack_tags() runs before the perms and DFA tables are unpacked, so no other table needs to be well formed to reach it. Policy load is gated by aa_may_manage_policy(), which checks CAP_MAC_ADMIN relative to the subject's own user namespace rather than the init user namespace, so with the default unprivileged_userns_apparmor_policy=1 the path is reachable from an unprivileged task in a matched-level nested namespace, not only by a globally privileged one. Perform the addition in u64 so that it cannot wrap, restoring the intended i + cnt < sets.size guarantee.
来源: CVE Program / CVE List V5
CVSS Information
N/A
来源: CVE Program / CVE List V5
Vulnerability Type
N/A
来源: CVE Program / CVE List V5

受影响产品

厂商 产品 影响版本 CPE 订阅
Linux Linux 3d28e2397af7a89ac3de33c686ed404cda59b5d5 ~ ef79a405f83993f0fda5efde371d98433f7d7a47 -
Linux Linux 7.0 -

二、漏洞 CVE-2026-90246 的公开POC

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

未找到公开 POC。

登录以生成 AI POC

三、漏洞 CVE-2026-90246 的情报信息

登录查看更多情报信息。

CVE-2026-90246 补丁与修复 (1)

CVE-2026-90246 其他参考 (1)

同批安全公告 · Linux · 2026-09-17 · 共 602 条

CVE-2026-90257 Linux内核 virtio_bt 越界读取漏洞
CVE-2026-90238 Linux内核 AMD ISP4 驱动死锁漏洞
CVE-2026-90240 Linux内核 IOMMU 别名拆除时刷新缓存错误
CVE-2026-90239 Linux内核 AMD ISP4 内存管理缺陷
CVE-2026-90241 Intel VT-d 可扩展模式探测失败导致上下文拆除缺陷
CVE-2026-90243 Linux内核 VT-d IOMMU 安全漏洞
CVE-2026-90242 Linux内核IOMMU VTD引用计数泄漏
CVE-2026-90244 Linux内核 iommu/dma 竞争条件漏洞
CVE-2026-90245 Linux fbdev kyro 驱动坐标校验缺陷
CVE-2026-90247 内核bpf路径mmap_lock内存泄漏
CVE-2026-90248 Linux内核net/sched:修复竞态条件导致的协议拆解错误
CVE-2026-90249 Linux内核iio驱动运行时电源管理修复
CVE-2026-90250 Linux内核 bpf cgroup 空指针解引用漏洞
CVE-2026-90251 Windows 17763 Bluetooth RCE漏洞
CVE-2026-90253 Linux 蓝牙MESH 发送取消命令内存泄漏漏洞
CVE-2026-90252 Linux Bluetooth MGMT 取消时未释放HCI命令
CVE-2026-90254 蓝牙 hci_sync 广告实例释放漏洞
CVE-2026-90256 Linux Bluetooth L2CAP 远程代码执行漏洞
CVE-2026-90255 Linux内核 Bluetooth 漏洞
CVE-2026-90267 Linux 内核 SCSI 驱动内存池泄漏漏洞

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

IV. Related Vulnerabilities

V. Comments for CVE-2026-90246

暂无评论


发表评论