CVE-2026-31431 の詳細
CVEの情報
説明:
In the Linux kernel, the following vulnerability has been resolved:
crypto: algif_aead - Revert to operating out-of-place
This mostly reverts commit 72548b093ee3 except for the copying of
the associated data.
There is no benefit in operating in-place in algif_aead since the
source and destination come from different mappings. Get rid of
all the complexity added for in-place operation and just copy the
AD directly.
CVE更新日: 2026-04-22 09:16:21.270000
CVSSバージョン: 3.1
CVSSスコア: 7.8
KEVの情報
KEV更新日: 2026-05-01
EPSSの情報
EPSSは脆弱性が今後30日以内に悪用される確率を予測するスコアリングシステムで、FIRST(Forum of Incident Response and Security Teams)が提供しています。
EPSSのスコアが高いということは、攻撃されるリスクが高いことを意味するので、早めの対策が必要です。
EPSSスコア: 0.022350000
EPSS更新日: 2026-06-01 00:00:00
SSVCの情報
SSVCはカーネギーメロン大学ソフトウェア工学研究所が提案する脆弱性の評価手法です。ステークホルダーごとに脆弱性対応の優先度を決定することを支援します。
本サイトでは、CVE、KEV、EPSSの内容からExploitation(悪用状況)、Technical Impact(技術的影響)、Automatable(自動攻撃の可否)を判定します。
Exploitation: active
Technical Impact: high
Automatable: False
CVE‑2026‑31431 は Linux カーネルの暗号サブシステム(AF_ALG / algif_aead)に存在する ローカル特権昇格(LPE)脆弱性 で、一般ユーザーが root 権限を奪取できる重大な問題です。
1. 脆弱性の概要
Linux カーネルの AF_ALG(暗号 API)に存在する境界外書き込み(Out‑of‑bounds Write)脆弱性。暗号テンプレート authencesn の処理に欠陥があり、非特権ユーザーが 4 バイトの任意書き込みを行い、root 権限を奪取できる。
Theori(Xint Code)が 2026/4/29 に公開し、PoC もすでに出回っている。「Copy Fail」という通称が付けられている。
1.1 影響
1.2 深刻度
AV:L / PR:L / AC:L / UI:N / S:U / C:H / I:H / A:H(High) ※ ローカル前提だが、root 奪取のため深刻度は高い。
2. 対象となる環境
2.1 影響バージョン
IPA 公開情報より:
5.10.254 / 5.15.204 / 6.1.170 / 6.6.137 / 6.12.85 / 6.18.26 / 7.0.3 以降(kernel.org)
※ 各ディストリビューションは独自のバックポートを行うため、Ubuntu / RHEL / Debian / SUSE などの公式アドバイザリを必ず確認すること。
2.2 影響を受ける条件
3. 侵害の兆候(IOC)
(公式 IOC はなし。以下は脆弱性の性質から導かれる事実ベース)
4. 推奨対策
4.1 恒久対策(公式修正)
4.2 暫定回避策
(ディストロにより案内あり)
echo "install algif_aead /bin/false" > /etc/modprobe.d/disable-algif.conf rmmod algif_aead
※ カーネル組み込みの場合は無効化不可(RHEL 系など)
grubby --update-kernel=ALL --args="initcall_blacklist=algif_aead_init"
→ 再起動後に AF_ALG の利用不可を確認
5. 参照サイト(一次情報)