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

目标: 1000 元 · 已筹: 1336

100%

CVE-2026-80563— Linux内核GPIO驱动解绑时释放后使用漏洞

一分钟漏洞结论

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

在 Linux 内核中,以下漏洞已得到修复: gpio: sloppy-logic-analyzer:修复解绑时通过 debugfs 触发的 use-after-free(释放后使用)问题 “trigger” debugfs 文件使用了一个手写的 处理函数( ),该函数会解引用每个设备的 。该文件通过 创建,而处理函数从未获取 debugfs 引用。因此,在处理函数执行期间,没有任何机制保证对象保持存活。 是通过 分配的。当平台设备解绑时,devres 会释放该对象。由于 未安装 封装, 中的 不会等待正在进行的

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

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

漏洞信息

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

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

Vulnerability Title
gpio: sloppy-logic-analyzer: fix use-after-free via debugfs trigger on unbind
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: gpio: sloppy-logic-analyzer: fix use-after-free via debugfs trigger on unbind The "trigger" debugfs file has a hand-rolled ->write handler (trigger_write()) that dereferences the per-device gpio_la_poll_priv. The file is created with debugfs_create_file_unsafe(), and the handler never takes a debugfs reference. Nothing keeps the object alive while the handler runs. priv is allocated with devm_kzalloc(). devres frees it when the platform device is unbound. debugfs_create_file_unsafe() installs no full_proxy wrapper, so debugfs_remove_recursive() in gpio_la_poll_remove() does not wait for an in-flight trigger_write(). The blob_lock taken there does not help, because trigger_write() never takes it. A write that races an unbind therefore writes into freed memory: trigger_write() gpio_la_poll_remove() priv = m->private buf = memdup_user() [may sleep] mutex_lock(&priv->blob_lock) debugfs_remove_recursive() [no wait] mutex_unlock(&priv->blob_lock) (remove returns; devres frees priv) priv->trig_data = buf <-- use-after-free write priv->trig_len = count The race is reachable by root via /sys/bus/platform/drivers/gpio-sloppy-logic-analyzer/unbind. Create "trigger" with debugfs_create_file() instead. Its full_proxy wrapper makes debugfs_remove_recursive() drain any in-flight ->write before it returns. The use-after-free is confirmed under KASAN with a minimal reproducer of the same debugfs_create_file_unsafe() plus devm_kzalloc() pattern (available on request); it produces a slab-use-after-free write in the handler.
来源: 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 7828b7bbbf2074dd7dd14d87f50bc5ce9036d692 ~ 49a1ebb1ef2c8ada300c174b65273810abb4e326 -
Linux Linux 6.11 -

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

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

未找到公开 POC。

登录以生成 AI POC

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

登录查看更多情报信息。

CVE-2026-80563 补丁与修复 (4)

同批安全公告 · Linux · 2026-08-26 · 共 92 条

CVE-2026-80557 libceph 2.0 越界读取漏洞
CVE-2026-80553 s390/vfio_ccw 队列取消机制
CVE-2026-80552 s390/vfio_ccw 缓冲区溢出漏洞
CVE-2026-80549 s390 vfio_ccw 清理逻辑修复
CVE-2026-80546 s390 zcrypt CCA CPRB长度溢出检查
CVE-2026-80547 s390/vfio_ccw: 实现 CRW 锁
CVE-2026-80545 Linux内核 s390 加密子系统缓冲区溢出漏洞
CVE-2026-80543 s390/zcrypt: 用零填充 CCA 或 EP11 消息
CVE-2026-80548 s390 VFIO 条件变量竞态条件
CVE-2026-80555 s390/vfio_ccw 内存释放漏洞
CVE-2026-80554 Linux s390/vfio_ccw 通道程序段数限制
CVE-2026-80556 Linux内核 atmel-mci驱动释放后使用漏洞
CVE-2026-80559 Sur40 输入设备注册顺序修复
CVE-2026-80558 Ceph libceph 模块 OSID 索引缺陷
CVE-2026-80560 OpenRISC 信号处理 权限位恢复错误
CVE-2026-80561 libceph 多个不安全解码远程代码执行漏洞
CVE-2026-80562 内核 gpio ml-ioh 注册表锁机制优化
CVE-2026-80564 gve 驱动因缺少 ptp adjfine 空指针解引用
CVE-2026-80565 Linux Kernel qce 驱动内存管理错误
CVE-2026-80566 HyNitrON CST 触控校验漏洞

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

IV. Related Vulnerabilities

V. Comments for CVE-2026-80563

暂无评论


发表评论