CVE-2026-63831
Last modified
CVE-2026-63831 is a high-severity vulnerability rated 8.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: mac802154: llsec: add skb_cow_data() before in-place crypto llsec_do_encrypt_unauth(), llsec_do_encrypt_auth(), llsec_do_decrypt_unauth(), and llsec_do_decrypt_auth() all perform in-place cryptographic transformations on skb data. They build a scatterlist with sg_init_one() pointing into the skb's linear data area and then pass the same scatterlist as both src and dst to the crypto API (e.g. EPSS estimates a 0.24% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: mac802154: llsec: add skb_cow_data() before in-place crypto llsec_do_encrypt_unauth(), llsec_do_encrypt_auth(), llsec_do_decrypt_unauth(), and llsec_do_decrypt_auth() all perform in-place cryptographic transformations on skb data. They build a scatterlist with sg_init_one() pointing into the skb's linear data area and then pass the same scatterlist as both src and dst to the crypto API (e.g. crypto_skcipher_encrypt/decrypt, crypto_aead_encrypt/decrypt). On the RX path, __ieee802154_rx_handle_packet() clones the received skb before handing it to each subscriber via ieee802154_subif_frame(). The cloned skb shares the same underlying data buffer via reference counting. When llsec_do_decrypt() subsequently modifies this shared buffer in place, it corrupts data that other clones -- potentially belonging to other sockets or subsystems -- still reference. On the TX path, similar data sharing can occur when an skb's head has been cloned (skb_cloned() returns true). The fix is to call skb_cow_data() before performing any in-place crypto operation. skb_cow_data() ensures that the skb's data area is not shared: if the skb head is cloned or the data spans multiple fragments, it copies the data into a private buffer that can be safely modified in place. This is the same pattern used by: - ESP (net/ipv4/esp4.c, net/ipv6/esp6.c) - MACsec (drivers/net/macsec.c) - WireGuard (drivers/net/wireguard/receive.c) - TIPC (net/tipc/crypto.c) Without this guard, in-place crypto on shared skb data leads to: - Silent data corruption of other skb clones - Use-after-free when the crypto API scatterwalk writes through a page that has already been freed by another clone's kfree_skb() - Kernel crashes under concurrent 802.15.4 traffic with security enabled (KASAN/KMSAN reports slab-use-after-free) Found by 0sec (https://0sec.ai) using automated source analysis.
Metrics
CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 03556e4d0dbbbf4af9df76f4a3839c86f6afb015, < 3a2b378b3a9ca75d3518d879148d2ad25b5714a9; >= 03556e4d0dbbbf4af9df76f4a3839c86f6afb015, < 7a831bcd0486788283ef35e396d4282ee01bb0d5; >= 03556e4d0dbbbf4af9df76f4a3839c86f6afb015, < ff976ef7c39199ebff33c18034636595016db9f0; >= 03556e4d0dbbbf4af9df76f4a3839c86f6afb015, < e28e7fd34c449028325322a3f5127b92594b7396; >= 03556e4d0dbbbf4af9df76f4a3839c86f6afb015, < 993fd674fe85d114e6a8d3963033d4fbbc2170a8; >= 03556e4d0dbbbf4af9df76f4a3839c86f6afb015, < bd968bdd568beacfdf98ec537a87527e85f1d0cf; >= 03556e4d0dbbbf4af9df76f4a3839c86f6afb015, < 86d531337ea1ba02d9f2bc830d07c683d9bfaade; >= 03556e4d0dbbbf4af9df76f4a3839c86f6afb015, < 84a04eb5b210643bd67aab81ff805d32f62aa865 |
| Linux | Linux | 3.16 |
References
Timeline
- Published
- Last Modified
- Status
- Awaiting Analysis
Frequently Asked Questions
What is CVE-2026-63831?
How severe is CVE-2026-63831?
How do I fix CVE-2026-63831?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-63826In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63827In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-63828In the Linux kernel, the following vulnerability has been re…8.4
- CVE-2026-63829In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-6383A flaw was found in KubeVirt's Role-Based Access Control (RB…5.4
- CVE-2026-63830In the Linux kernel, the following vulnerability has been re…9.4
- CVE-2026-63832In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-63833In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-63834In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63835In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63836In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63837In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-63831?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
