CVE-2026-53362 の詳細
CVEの情報
説明:
In the Linux kernel, the following vulnerability has been resolved:
ipv6: account for fraggap on the paged allocation path
In __ip6_append_data(), when the paged-allocation branch is taken
(MSG_MORE / NETIF_F_SG / large fraglen), alloclen and pagedlen are
computed as
alloclen = fragheaderlen + transhdrlen;
pagedlen = datalen - transhdrlen;
datalen already includes fraggap (datalen = length + fraggap). When
fraggap is non-zero, this is not the first skb and transhdrlen is zero.
The fraggap bytes carried over from the previous skb are copied just past
the fragment headers in the new skb's linear area. The linear area is
therefore undersized by fraggap bytes while pagedlen is overstated by the
same amount, and the copy writes past skb->end into the trailing
skb_shared_info.
An unprivileged user can trigger this via a UDPv6 socket using
MSG_MORE together with MSG_SPLICE_PAGES.
The bad accounting was introduced by commit 773ba4fe9104 ("ipv6:
avoid partial copy for zc"). Before commit ce650a166335 ("udp6: Fix
__ip6_append_data()'s handling of MSG_SPLICE_PAGES"), the negative
copy value caused -EINVAL to be returned. That later commit allowed
MSG_SPLICE_PAGES to proceed in this case, making the corruption
triggerable.
The non-paged branch sets alloclen to fraglen, which already accounts
for fraggap because datalen does. Bring the paged branch in line by
adding fraggap to alloclen and subtracting it from pagedlen.
After this adjustment, copy no longer collapses to -fraggap on the
paged path, so remove the stale comment describing that old arithmetic.
Since a negative copy is no longer expected for a valid MSG_SPLICE_PAGES
case, remove the MSG_SPLICE_PAGES exception from the negative copy check.
CVE更新日: 2026-07-04 12:17:02.113000
CVSSバージョン: 3.1
CVSSスコア: 7.8
KEVの情報
KEV更新日: 2026-08-27
EPSSの情報
EPSSは脆弱性が今後30日以内に悪用される確率を予測するスコアリングシステムで、FIRST(Forum of Incident Response and Security Teams)が提供しています。
EPSSのスコアが高いということは、攻撃されるリスクが高いことを意味するので、早めの対策が必要です。
EPSSスコア: 0.005100000
EPSS更新日: 2026-08-30 00:00:00
SSVCの情報
SSVCはカーネギーメロン大学ソフトウェア工学研究所が提案する脆弱性の評価手法です。ステークホルダーごとに脆弱性対応の優先度を決定することを支援します。
本サイトでは、CVE、KEV、EPSSの内容からExploitation(悪用状況)、Technical Impact(技術的影響)、Automatable(自動攻撃の可否)を判定します。
Exploitation: active
Technical Impact: high
Automatable: False
1. 脆弱性の概要
Linux カーネルの IPv6 実装に存在する メモリ破壊(Out‑of‑Bounds Write) 脆弱性。
__ip6_append_data()の paged‑allocation パスにおいて fraggap(前フラグメントの余剰バイト) の扱いが不適切で、結果として ローカルの非特権ユーザーがカーネルメモリ破壊 → 特権昇格の可能性 が生じる。
1.1 影響
1.2 深刻度
Vector: AV:L / AC:L / PR:L / UI:N / S:U / C:H / I:H / A:H
(Oracle Linux / Rapid7 による評価)
2. 対象となる環境
2.1 影響を受ける OS / カーネルバージョン
Linux カーネルの以下のコミットを含むバージョンが影響:
Oracle Linux の影響範囲(公式 Errata):
※具体的な修正パッチは ELSA‑2026‑34911 / ELSA‑2026‑500004 / ELSA‑2026‑500150 で提供。
その他のディストリビューションも、上記コミットを含む upstream kernel を採用していれば影響する(SentinelOne 記述)。
2.2 影響を受ける設定
3. 影響を受けた時の兆候(IoC)
公式の IoC は 不明だが、脆弱性の性質から確認可能な兆候:
4. 推奨対策
4.1 本対策(恒久対策)
Oracle Linux の場合:
を適用する。
4.2 暫定回避策(緩和策)
公式の暫定回避策は不明だが、有効と考えられる緩和策:
5. その他補足