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

目标: 1000 元 · 已筹: 1336

100%

CVE-2022-48922— Linux kernel 安全漏洞

一分钟漏洞结论

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

Linux kernel是美国Linux基金会的开源操作系统Linux所使用的内核。 Linux kernel存在安全漏洞,该漏洞源于trace_hardirqs_{on,off}函数没有正确设置帧指针。

AI 预测 5.5 利用难度: 极易 EPSS 0.21% · P11

可能的 ATT&CK 技术 2 AI

T1496 · Resource Hijacking T1044

影响版本矩阵 10

厂商产品 版本范围状态
Linux Linux 3c46979829824da5af8766d89fa877976bdae884< 9e2dbc31e367d08ee299a0d8aeb498cb2e12a1c3 affected
3c46979829824da5af8766d89fa877976bdae884< 1851b9a467065b18ec2cba156eea345206df1c8f affected
3c46979829824da5af8766d89fa877976bdae884< b5e180490db4af8c0f80c4b65ee482d333d0e8ee affected
3c46979829824da5af8766d89fa877976bdae884< 22e2100b1b07d6f5acc71cc1acb53f680c677d77 affected
5.9 affected
< 5.9 unaffected
5.10.103≤ 5.10.* unaffected
5.15.26≤ 5.15.* unaffected
… +2 条更多
获取后续新漏洞提醒 登录后订阅

一、 漏洞 CVE-2022-48922 基础信息

漏洞信息

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

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

Vulnerability Title
riscv: fix oops caused by irqsoff latency tracer
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: riscv: fix oops caused by irqsoff latency tracer The trace_hardirqs_{on,off}() require the caller to setup frame pointer properly. This because these two functions use macro 'CALLER_ADDR1' (aka. __builtin_return_address(1)) to acquire caller info. If the $fp is used for other purpose, the code generated this macro (as below) could trigger memory access fault. 0xffffffff8011510e <+80>: ld a1,-16(s0) 0xffffffff80115112 <+84>: ld s2,-8(a1) # <-- paging fault here The oops message during booting if compiled with 'irqoff' tracer enabled: [ 0.039615][ T0] Unable to handle kernel NULL pointer dereference at virtual address 00000000000000f8 [ 0.041925][ T0] Oops [#1] [ 0.042063][ T0] Modules linked in: [ 0.042864][ T0] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 5.17.0-rc1-00233-g9a20c48d1ed2 #29 [ 0.043568][ T0] Hardware name: riscv-virtio,qemu (DT) [ 0.044343][ T0] epc : trace_hardirqs_on+0x56/0xe2 [ 0.044601][ T0] ra : restore_all+0x12/0x6e [ 0.044721][ T0] epc : ffffffff80126a5c ra : ffffffff80003b94 sp : ffffffff81403db0 [ 0.044801][ T0] gp : ffffffff8163acd8 tp : ffffffff81414880 t0 : 0000000000000020 [ 0.044882][ T0] t1 : 0098968000000000 t2 : 0000000000000000 s0 : ffffffff81403de0 [ 0.044967][ T0] s1 : 0000000000000000 a0 : 0000000000000001 a1 : 0000000000000100 [ 0.045046][ T0] a2 : 0000000000000000 a3 : 0000000000000000 a4 : 0000000000000000 [ 0.045124][ T0] a5 : 0000000000000000 a6 : 0000000000000000 a7 : 0000000054494d45 [ 0.045210][ T0] s2 : ffffffff80003b94 s3 : ffffffff81a8f1b0 s4 : ffffffff80e27b50 [ 0.045289][ T0] s5 : ffffffff81414880 s6 : ffffffff8160fa00 s7 : 00000000800120e8 [ 0.045389][ T0] s8 : 0000000080013100 s9 : 000000000000007f s10: 0000000000000000 [ 0.045474][ T0] s11: 0000000000000000 t3 : 7fffffffffffffff t4 : 0000000000000000 [ 0.045548][ T0] t5 : 0000000000000000 t6 : ffffffff814aa368 [ 0.045620][ T0] status: 0000000200000100 badaddr: 00000000000000f8 cause: 000000000000000d [ 0.046402][ T0] [<ffffffff80003b94>] restore_all+0x12/0x6e This because the $fp(aka. $s0) register is not used as frame pointer in the assembly entry code. resume_kernel: REG_L s0, TASK_TI_PREEMPT_COUNT(tp) bnez s0, restore_all REG_L s0, TASK_TI_FLAGS(tp) andi s0, s0, _TIF_NEED_RESCHED beqz s0, restore_all call preempt_schedule_irq j restore_all To fix above issue, here we add one extra level wrapper for function trace_hardirqs_{on,off}() so they can be safely called by low level entry code.
来源: 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存在安全漏洞,该漏洞源于trace_hardirqs_{on,off}函数没有正确设置帧指针。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商 产品 影响版本 CPE 订阅
Linux Linux 3c46979829824da5af8766d89fa877976bdae884 ~ 9e2dbc31e367d08ee299a0d8aeb498cb2e12a1c3 -
Linux Linux 5.9 -

二、漏洞 CVE-2022-48922 的公开POC

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

未找到公开 POC。

登录以生成 AI POC

三、漏洞 CVE-2022-48922 的情报信息

登录查看更多情报信息。

CVE-2022-48922 其他参考 (4)

同批安全公告 · Linux · 2024-08-22 · 共 42 条

CVE-2022-48941 8.8 HIGH Linux kernel 竞争条件问题漏洞
CVE-2022-48919 8.8 HIGH Linux kernel 安全漏洞
CVE-2022-48925 7.8 HIGH Linux kernel 安全漏洞
CVE-2022-48923 7.8 HIGH Linux kernel 安全漏洞
CVE-2022-48927 7.8 HIGH Linux kernel 安全漏洞
CVE-2022-48913 7.8 HIGH Linux kernel 安全漏洞
CVE-2022-48912 7.8 HIGH Linux kernel 安全漏洞
CVE-2022-48911 7.8 HIGH Linux kernel 安全漏洞
CVE-2022-48932 7.8 HIGH Linux kernel 安全漏洞
CVE-2022-48935 7.8 HIGH Linux kernel 安全漏洞
CVE-2022-48940 7.8 HIGH Linux kernel 缓冲区错误漏洞
CVE-2022-48943 7.1 HIGH Linux kernel 安全漏洞
CVE-2022-48933 Linux kernel 安全漏洞
CVE-2022-48931 Linux kernel 安全漏洞
CVE-2022-48934 Linux kernel 安全漏洞
CVE-2022-48937 Linux kernel 安全漏洞
CVE-2022-48930 Linux kernel 安全漏洞
CVE-2022-48929 Linux kernel 安全漏洞
CVE-2022-48928 Linux kernel 安全漏洞
CVE-2022-48938 Linux kernel 输入验证错误漏洞

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

IV. Related Vulnerabilities

V. Comments for CVE-2022-48922

暂无评论


发表评论