
CVE-2026-31431 Linux LPE脆弱性の検出ルール - クレジット: (Copy Fail) https://copy.fail
公開日: 2026-04-30
CVSSv3: 7.8 (高)
種別: ローカル権限昇格 (LPE)
サブシステム: Linuxカーネルの algif_aead / authencesn 暗号テンプレート
影響を受ける範囲: Linuxカーネル 4.14 – 6.18.21(2017年以降のほぼすべてのディストリビューション)
参考情報:
CVE-2026-31431 は、カーネル 4.14(2017年)で導入された論理上の欠陥であり、3つの独立した変更が交差する地点に存在します。
authencesn テンプレート(IPsec ESNサポート用に2011年追加)は、出力バッファの境界を越えてスクラッチデータ4バイトを書き込みます。AF_ALG は2015年にAEADサポートを獲得し、ユーザー空間がページキャッシュされたファイルから splice() でデータを送信できるようになりました。algif_aead.c はインプレースで動作する(req->src == req->dst)ように最適化され、ライブなページキャッシュページを書き込み可能なscatterlistに配置しました。その結果、非特権ユーザーは、読み取り可能な任意のファイル(setuidバイナリや /etc/passwd を含む)のカーネルのページキャッシュコピーに、攻撃者が制御する4バイトを正確に書き込むことができます — ディスク上のファイルには触れずに。動作するPoCは732バイトのPythonスクリプトです。レースコンディションは発生しません。ディストリビューションごとのオフセットも不要です。Ubuntu、RHEL、Amazon Linux、SUSE で確実に動作します。
Attacker opens AF_ALG socket (family 38, type 5) └─ Binds to "authencesn(hmac(sha256),cbc(aes))" └─ Sets SOL_ALG (279) options including key and authsize └─ Accepts a connection socket
Attacker opens target file (e.g., /etc/passwd) read-only └─ Uses splice() to feed page-cache pages into the AEAD socket's RX buffer └─ Sends crafted AAD via sendmsg() — bytes 4–7 of AAD = attacker-controlled write value
authencesn performs in-place decryption: └─ scatterwalk_map_and_copy writes seqno_lo into the chained page-cache page └─ recvmsg() returns an error (HMAC fails — expected), but the write already happened
Page-cache now contains attacker-modified copy of the file └─ Kernel executes from page-cache, not disk └─ On-disk file is UNCHANGED — file integrity tools see nothing
The PoC targets `/etc/passwd`: it finds the offset of the running user's UID field and overwrites it with `0000`, then invokes `su` to obtain a root shell.
---
## Detection Limitations
> **Read this section before deploying any rules below.**
This exploit has two properties that significantly limit detection coverage:
**1. The write goes to the page cache, not the filesystem.**
Any detection tool that monitors file system events — `inotify`, `fanotify`, AIDE, Tripwire, auditd path watches — will **not** observe the modification. The on-disk file is never written. This means the `-p w` (write) flags in auditd path watches for `/usr/bin/su` or `/etc/passwd` will not catch the actual exploitation write.
**2. The mechanism uses legitimate kernel interfaces.**
`AF_ALG` sockets, `splice()`, and `authencesn` all have legitimate uses (IPsec, kernel self-tests, sendfile-style I/O). Detection must focus on the *combination* of these primitives rather than any one in isolation, and false positives should be expected on systems running IPsec or doing kernel crypto testing.
**What detection CAN catch:**
- The `socket(AF_ALG, SOCK_SEQPACKET, 0)` syscall
- The `splice()` syscall correlated with the above, especially near setuid binary access
- The PoC script itself (via YARA)
- The specific `authencesn(hmac(sha256),cbc(aes))` algorithm string in process memory or script files
**What detection CANNOT catch:**
- The actual page-cache write (in-memory, no filesystem event)
- Post-exploitation use of the modified page-cache entry (looks like a normal `su` or `passwd` call)
- Variants that avoid Python or the specific algorithm string
---
## Immediate Mitigation
Before deploying detection rules, apply this mitigation on any unpatched host:```bash
# Disable algif_aead kernel module — blocks the exploit primitive entirely
echo "install algif_aead /bin/false" | sudo tee /etc/modprobe.d/disable-algif-aead.conf
sudo rmmod algif_aead 2>/dev/null || true
緩和策が有効であることを確認するには、公式ディテクターを使用します:```bash
python3 test_cve_2026_31431.py
> **注記:** `rmmod` コマンドは、モジュールが現在ロードされていない場合に失敗しますが、これは許容されます。`modprobe.d` 設定により、今後のロードが防止されます。この緩和策は、標準的なTLS、SSH、ファイルシステム暗号化のワークロードには影響しません — `authencesn` テンプレートを使用する拡張シーケンス番号付きIPsecにのみ影響します。これは、専用VPNゲートウェイ以外では一般的ではありません。
---
## YARAルール
`cve_2026_31431.yar` として保存
> **スキャン範囲:** このルールは、ディスク上またはメモリダンプから取得したPythonスクリプトファイルをスキャンするように設計されています。既知のPoCおよび類似の変種に一致します。syscallレベルでの悪用活動は検出しません — それにはauditd/Wazuhルールを使用してください。```yara
rule CVE_2026_31431_CopyFail_PoC_HighConfidence {
meta:
description = "High-confidence match: CVE-2026-31431 Copy Fail PoC or close variant"
author = "Detection Engineering"
reference = "https://xint.io/blog/copy-fail-linux-distributions"
cve = "CVE-2026-31431"
date = "2026-04-30"
severity = "High"
cvss = "7.8"
strings:
// Algorithm string unique to this exploit path — very high fidelity
$alg_full = "authencesn(hmac(sha256),cbc(aes))" ascii
// Specific socket call signature from PoC: AF_ALG=38, SOCK_SEQPACKET=5
$socket_call = "socket(38,5,0)" ascii
// SOL_ALG socket option (decimal 279)
$solalg = "setsockopt(279" ascii
// Hex key/iv payload written via setsockopt in PoC
$key_payload = "0800010000000010" ascii
// splice() usage in context of AEAD operations
$splice = "splice(" ascii
// Target indicators from PoC (page-cache corruption targets)
$target_passwd = "/etc/passwd" ascii
$target_su = "/usr/bin/su" ascii
// AF_ALG aead bind strings
$aead_bind = "\"aead\"" ascii
condition:
// High-confidence: unique algorithm string alone is sufficient
$alg_full
or
// Medium-confidence: socket primitive + option number
($socket_call and $solalg)
or
// Medium-confidence: splice into AEAD socket targeting a setuid path
($aead_bind and $splice and ($target_passwd or $target_su))
or
// PoC hex payload present alongside splice
($key_payload and $splice)
}
rule CVE_2026_31431_CopyFail_Mechanism {
meta:
description = "Behavioral: AF_ALG AEAD + splice combination suggestive of CVE-2026-31431 technique"
author = "Detection Engineering"
reference = "https://xint.io/blog/copy-fail-linux-distributions"
cve = "CVE-2026-31431"
date = "2026-04-30"
severity = "Medium"
note = "Higher false positive rate than HighConfidence rule — review matches in context"
strings:
$authencesn = "authencesn" ascii nocase
$af_alg_num = "socket(38" ascii
$sol_alg_num = "279" ascii
$splice = "splice(" ascii
condition:
($authencesn and $splice)
or
($af_alg_num and $sol_alg_num and $splice)
}
/etc/audit/rules.d/cve-2026-31431.rules として保存
次で再読み込み:```bash sudo augenrules --load
sudo auditctl -R /etc/audit/rules.d/cve-2026-31431.rules
入力が空のため、翻訳するテキストがありません。```bash
## ============================================================
## CVE-2026-31431 "Copy Fail" — Auditd Detection Rules
## ============================================================
## These rules capture the MECHANISM of the exploit (socket +
## splice syscalls) and correlated /etc/passwd access patterns.
##
## IMPORTANT: These rules will NOT detect the page-cache write
## itself — it is an in-memory operation with no filesystem
## event. File path watches (-w) on setuid binaries or
## /etc/passwd will not fire on the exploit write.
##
## Correlate rule hits across audit.key values to build signal:
## A hit on afalg_socket followed closely by a hit on
## splice_syscall from the same process is a strong indicator.
## ============================================================
## --- Core exploit primitive: AF_ALG socket creation ---
## Monitors socket(2) syscall where a0 = 0x26 (38 decimal = AF_ALG)
## This is the first step of the exploit chain.
-a always,exit -F arch=b64 -S socket -F a0=0x26 -k cve_2026_31431_afalg_socket
-a always,exit -F arch=b32 -S socket -F a0=0x26 -k cve_2026_31431_afalg_socket
## --- splice() syscall monitoring ---
## splice() is used to feed page-cache pages into the AEAD socket.
## NOTE: splice() is commonly used for sendfile-like operations.
## Correlate with cve_2026_31431_afalg_socket hits from the same PID.
-a always,exit -F arch=b64 -S splice -k cve_2026_31431_splice
-a always,exit -F arch=b32 -S splice -k cve_2026_31431_splice
## --- /etc/passwd access monitoring ---
## The PoC reads /etc/passwd to locate the UID field offset.
## Read access (-p r) is retained here because the intent is
## to correlate this read with the AF_ALG socket key above,
## not to use the watch as a standalone alert.
-w /etc/passwd -p rwa -k cve_2026_31431_passwd_access
## --- setuid binary execution monitoring ---
## Detects execution of su after page-cache modification.
## The page-cache write makes su execute as root; this catches
## the exploitation outcome, not the write itself.
-w /usr/bin/su -p xa -k cve_2026_31431_su_exec
-w /usr/bin/sudo -p xa -k cve_2026_31431_sudo_exec
## --- algif_aead module state monitoring ---
## The exploit requires algif_aead to be loaded.
## Monitoring modprobe helps detect attempts to load the module
## on systems where it was previously disabled as a mitigation,
## and confirms whether the mitigation is being bypassed.
-a always,exit -F arch=b64 -S finit_module -S init_module -k cve_2026_31431_module_load
-w /etc/modprobe.d -p wa -k cve_2026_31431_modprobe_conf
ルールをデプロイした後、ausearch を使用して、時間枠内のキー間でヒットを相関させます:```bash
sudo ausearch -k cve_2026_31431_afalg_socket -k cve_2026_31431_splice
--start recent -i | aureport --interpret
sudo ausearch -k cve_2026_31431_afalg_socket --start today -i
| grep 'pid=' | awk -F'pid=' '{print $2}' | awk '{print $1}' | sort -u
| while read pid; do
sudo ausearch -k cve_2026_31431_splice --start today -i | grep "pid=$pid"
&& echo "[!] PID $pid hit both AF_ALG and splice — investigate"
done
---
## Wazuh ルール
ローカルルールファイルとして保存します(通常は `/var/ossec/etc/rules/local_rules.xml`)。
> **前提条件:** これらのルールは、auditd が上記のルールで設定され、Wazuh の auditd デコーダーが有効になっていることに依存します。これらのルールは、auditd によって設定される `audit.key` フィールドに一致します。これは、2 つのシステムを橋渡しするための正確で信頼性の高い方法です。ルールでは、Wazuh のバージョン間での互換性を維持するために、特定の `<if_sid>` ではなく `<if_group>auditd</if_group>` を使用します。```xml
<!-- ============================================================
CVE-2026-31431 "Copy Fail" — Wazuh Correlation Rules
Requires: auditd rules from cve-2026-31431.rules deployed
============================================================ -->
<!-- Level 10: AF_ALG socket creation detected -->
<rule id="112001" level="10">
<if_group>auditd</if_group>
<field name="audit.key">cve_2026_31431_afalg_socket</field>
<description>CVE-2026-31431 Copy Fail: AF_ALG socket (family 38) created by unprivileged process</description>
<group>cve,privilege_escalation,linux,kernel,crypto,</group>
</rule>
<!-- Level 10: splice() syscall detected -->
<rule id="112002" level="10">
<if_group>auditd</if_group>
<field name="audit.key">cve_2026_31431_splice</field>
<description>CVE-2026-31431 Copy Fail: splice() syscall detected — monitor for correlation with AF_ALG socket rule</description>
<group>cve,privilege_escalation,linux,kernel,</group>
</rule>
<!-- Level 14 CRITICAL: AF_ALG socket followed by splice() from the same source -->
<!-- This chaining is the core exploit mechanism -->
<rule id="112003" level="14">
<if_matched_sid>112001</if_matched_sid>
<if_group>auditd</if_group>
<field name="audit.key">cve_2026_31431_splice</field>
<same_field>audit.pid</same_field>
<description>CVE-2026-31431 Copy Fail CRITICAL: AF_ALG socket creation followed by splice() from same process — active exploitation likely</description>
<group>cve,privilege_escalation,linux,kernel,crypto,high_confidence,</group>
</rule>
<!-- Level 12: /etc/passwd access correlated with AF_ALG activity -->
<rule id="112004" level="12">
<if_matched_sid>112001</if_matched_sid>
<if_group>auditd</if_group>
<field name="audit.key">cve_2026_31431_passwd_access</field>
<description>CVE-2026-31431 Copy Fail: /etc/passwd access following AF_ALG socket creation — consistent with PoC target selection</description>
<group>cve,privilege_escalation,linux,kernel,</group>
</rule>
<!-- Level 13: su or sudo executed after AF_ALG socket was created -->
<!-- This may represent execution of the modified page-cache entry -->
<rule id="112005" level="13">
<if_matched_sid>112001</if_matched_sid>
<if_group>auditd</if_group>
<field name="audit.key">cve_2026_31431_su_exec|cve_2026_31431_sudo_exec</field>
<description>CVE-2026-31431 Copy Fail: su/sudo execution following AF_ALG socket creation — possible post-exploitation</description>
<group>cve,privilege_escalation,linux,kernel,</group>
</rule>
<!-- Level 12: Attempt to load algif_aead after it was disabled as a mitigation -->
<rule id="112006" level="12">
<if_group>auditd</if_group>
<field name="audit.key">cve_2026_31431_module_load</field>
<field name="audit.exe" type="pcre2">^.*(python|python3|insmod|modprobe).*$</field>
<description>CVE-2026-31431 Copy Fail: Kernel module load attempt — verify algif_aead mitigation has not been bypassed</description>
<group>cve,privilege_escalation,linux,kernel,</group>
</rule>
<!-- Level 13: modprobe.d config modified — possible mitigation removal -->
<rule id="112007" level="13">
<if_group>auditd</if_group>
<field name="audit.key">cve_2026_31431_modprobe_conf</field>
<description>CVE-2026-31431 Copy Fail: /etc/modprobe.d modified — verify algif_aead disable config has not been removed</description>
<group>cve,privilege_escalation,linux,kernel,</group>
</rule>
misp_cve_2026_31431.json として保存し、MISP → Events → Import でインポートしてください。
注記: インポートする前に、以下のプレースホルダー UUID を、環境に合わせて新しく生成した UUID4 に置き換えてください。プレースホルダー値は読みやすさを考慮して一貫した形式で示されています。```json { "Event": { "uuid": "7f3a2d1e-8b4c-4f9a-a3e2-6d5c1b8e9f0a", "info": "CVE-2026-31431 Copy Fail — Linux LPE via authencesn page-cache write", "threat_level_id": "2", "analysis": "2", "date": "2026-04-30", "Attribute": [ { "type": "vulnerability", "category": "External analysis", "to_ids": false, "uuid": "1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d", "comment": "CVE identifier", "value": "CVE-2026-31431" }, { "type": "text", "category": "Other", "to_ids": false, "uuid": "2b3c4d5e-6f7a-8b9c-0d1e-2f3a4b5c6d7e", "comment": "Vulnerability description", "value": "Logic flaw in Linux kernel authencesn cryptographic template. An unprivileged local user can write 4 attacker-controlled bytes into the page cache of any readable file via AF_ALG + splice(), enabling local privilege escalation. No race condition required. Affects kernels 4.14 through 6.18.21." }, { "type": "text", "category": "Other", "to_ids": false, "uuid": "3c4d5e6f-7a8b-9c0d-1e2f-3a4b5c6d7e8f", "comment": "Attack vector summary", "value": "socket(38, 5, 0) [AF_ALG/SOCK_SEQPACKET] → bind authencesn(hmac(sha256),cbc(aes)) → setsockopt(SOL_ALG/279) → splice() page-cache pages into AEAD socket → 4-byte controlled write into page cache of target file" }, { "type": "text", "category": "Other", "to_ids": false, "uuid": "4d5e6f7a-8b9c-0d1e-2f3a-4b5c6d7e8f9a", "comment": "Affected kernel range", "value": "Linux kernel 4.14 (commit 72548b093ee3) through 6.18.21" }, { "type": "text", "category": "Other", "to_ids": false, "uuid": "5e6f7a8b-9c0d-1e2f-3a4b-5c6d7e8f9a0b", "comment": "Introducing commit (root cause)", "value": "72548b093ee38a6d4f2a19e6ef1948ae05c181f7 — algif_aead in-place AEAD optimization (2017)" }, { "type": "text", "category": "Other", "to_ids": false, "uuid": "6f7a8b9c-0d1e-2f3a-4b5c-6d7e8f9a0b1c", "comment": "Fix commit — kernel 6.18.22 stable", "value": "fafe0fa2995a0f7073c1c358d7d3145bcc9aedd8" }, { "type": "text", "category": "Other", "to_ids": false, "uuid": "7a8b9c0d-1e2f-3a4b-5c6d-7e8f9a0b1c2d", "comment": "Fix commit — kernel 6.19.12 stable", "value": "ce42ee423e58dffa5ec03524054c9d8bfd4f6237" }, { "type": "text", "category": "Other", "to_ids": false, "uuid": "8b9c0d1e-2f3a-4b5c-6d7e-8f9a0b1c2d3e", "comment": "Fix commit — kernel 7.0 mainline", "value": "a664bf3d603dc3bdcf9ae47cc21e0daec706d7a5" }, { "type": "text", "category": "Other", "to_ids": true, "uuid": "9c0d1e2f-3a4b-5c6d-7e8f-9a0b1c2d3e4f", "comment": "IoC: Socket family (AF_ALG)", "value": "socket family 38 (AF_ALG)" }, { "type": "text", "category": "Other", "to_ids": true, "uuid": "0d1e2f3a-4b5c-6d7e-8f9a-0b1c2d3e4f5a", "comment": "IoC: Socket type (SOCK_SEQPACKET)", "value": "socket type 5 (SOCK_SEQPACKET)" }, { "type": "text", "category": "Other", "to_ids": true, "uuid": "1e2f3a4b-5c6d-7e8f-9a0b-1c2d3e4f5a6b", "comment": "IoC: Socket option (SOL_ALG = 279)", "value": "setsockopt level 279 (SOL_ALG)" }, { "type": "text", "category": "Other", "to_ids": true, "uuid": "2f3a4b5c-6d7e-8f9a-0b1c-2d3e4f5a6b7c", "comment": "IoC: Algorithm string (highest fidelity)", "value": "authencesn(hmac(sha256),cbc(aes))" }, { "type": "text", "category": "Other", "to_ids": true, "uuid": "3a4b5c6d-7e8f-9a0b-1c2d-3e4f5a6b7c8d", "comment": "IoC: Primary PoC target file", "value": "/etc/passwd (UID field offset targeted by PoC)" }, { "type": "text", "category": "Other", "to_ids": true, "uuid": "4b5c6d7e-8f9a-0b1c-2d3e-4f5a6b7c8d9e", "comment": "IoC: Secondary targets (setuid binaries)", "value": "/usr/bin/su, /usr/bin/sudo" }, { "type": "text", "category": "Other", "to_ids": false, "uuid": "5c6d7e8f-9a0b-1c2d-3e4f-5a6b7c8d9e0f", "comment": "Immediate mitigation", "value": "echo 'install algif_aead /bin/false' > /etc/modprobe.d/disable-algif-aead.conf && rmmod algif_aead" }, { "type": "url", "category": "External analysis", "to_ids": false, "uuid": "6d7e8f9a-0b1c-2d3e-4f5a-6b7c8d9e0f1a", "comment": "Official write-up", "value": "" }, { "type": "url", "category": "External analysis", "to_ids": false, "uuid": "7e8f9a0b-1c2d-3e4f-5a6b-7c8d9e0f1a2b", "comment": "Official PoC repository", "value": "" } ], "Object": [ { "name": "vulnerability", "meta-category": "vulnerability", "Attribute": [ { "type": "vulnerability", "object_relation": "id", "value": "CVE-2026-31431" }, { "type": "cvss-score", "object_relation": "cvss-score", "value": "7.8" }, { "type": "text", "object_relation": "summary", "value": "Linux kernel authencesn LPE via AF_ALG + splice() page-cache write" } ] } ] } }
---
## パッチ適用と修復
### カーネルパッチ
| ブランチ | 修正バージョン | 修正コミット |
|--------|--------------|------------|
| Stable 6.18.x | 6.18.22 | `fafe0fa2995a0f7073c1c358d7d3145bcc9aedd8` |
| Stable 6.19.x | 6.19.12 | `ce42ee423e58dffa5ec03524054c9d8bfd4f6237` |
| Mainline | 7.0 | `a664bf3d603dc3bdcf9ae47cc21e0daec706d7a5` |
この修正は、`algif_aead.c` における2017年のインプレースAEAD最適化をアウトオブプレース操作に戻し、ページキャッシュのページが書き込み可能なscatterlistに配置されないようにします。
### ディストリビューション別のガイダンス
| ディストリビューション | 対応 |
|---|---|
| Ubuntu | `apt-get update && apt-get upgrade linux-image-generic`; USNアドバイザリを確認してください |
| RHEL / Rocky / Alma | `dnf update kernel`; RHSBアドバイザリを確認してください |
| Amazon Linux 2023 | `dnf update kernel`; ALASアドバイザリを確認してください |
| SUSE / openSUSE | `zypper update kernel-default`; SUSE SAアドバイザリを確認してください |
| Debian | セキュリティトラッカーを確認してください; バックポートされたパッチがカーネル更新より先に提供される場合があります |
| Arch | `pacman -Syu` (ローリングリリース; 上流の修正が入り次第取り込みます) |
### 曝露後の整合性検証
パッチ適用前にホスト上で悪用が発生した疑いがある場合:```bash
# 1. Check if /etc/passwd UID fields have been tampered
# (compare against a known-good backup or secondary host)
awk -F: '$3 ~ /^0+$/ && $1 != "root" {print "SUSPICIOUS UID 0 ENTRY:", $0}' /etc/passwd
# 2. Drop the page cache to flush any in-memory modifications
# WARNING: This impacts performance temporarily
sync && echo 3 | sudo tee /proc/sys/vm/drop_caches
# 3. Verify setuid binaries against package manager
rpm -Va --nomtime 2>/dev/null | grep -E '^.{0,8}5.*su$|^.{0,8}5.*sudo$' # RHEL/rpm
debsums -s 2>/dev/null | grep -E 'su|sudo' # Debian/Ubuntu
# 4. Re-examine recently logged su/sudo invocations for unexpected UID transitions
journalctl -u sudo --since "48 hours ago" | grep "session opened for user root"
重要: 標準のファイル整合性ツール(AIDE、Tripwire、debsums、
rpm -Va)はディスク上のハッシュをチェックするため、ページキャッシュ悪用後もバイナリは変更されていないように表示されます。ページキャッシュは再起動またはdrop_cachesによって自然にクリアされます。再起動後のシステムではページキャッシュの破損は消えますが、攻撃者はすでに他の手段で永続化を確立している可能性があります。
検出パッケージは、公式 PoC theori-io/copy-fail-CVE-2026-31431 に基づいて保守されています。これらのルールでカバーされない悪用の変種を観測した場合は、メインの POC リポジトリで issue を開いてください。
| インジケータ | 値 | 信頼度 |
|---|
| AF_ALG ソケットファミリ | 38 (socket() の最初の引数) | 中 — 正当な用途が存在 |
| ソケットタイプ | 5 (SOCK_SEQPACKET) | 中 |
| SOL_ALG オプションレベル | 279 (setsockopt() の最初の引数) | 中 |
| アルゴリズム文字列 | authesn(hmac(sha256),cbc(aes)) | 高 — IPsec ESN 以外では珍しい |
| システムコールチェーン | socket(38) → setsockopt(279) → splice() | 高 |
| PoC キーペイロード | 0800010000000010 (hex、setsockopt 内) | 高 (既知の PoC の場合) |
| 主な PoC ターゲット | /etc/passwd の UID フィールド | 中 |
| 二次ターゲット | /usr/bin/su、/usr/bin/sudo | 中 |
| カーネルモジュール | algif_aead | 文脈依存 |