CVE-2026-63831

Source
https://cve.org/CVERecord?id=CVE-2026-63831
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-63831.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-63831
Downstream
Published
2026-07-19T12:02:24.320Z
Modified
2026-07-22T05:30:06.233842470Z
Severity
  • 8.8 (High) CVSS_V3 - CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H CVSS Calculator
Summary
mac802154: llsec: add skb_cow_data() before in-place crypto
Details

In the Linux kernel, the following vulnerability has been resolved:

mac802154: llsec: add skbcowdata() before in-place crypto

llsecdoencryptunauth(), llsecdoencryptauth(), llsecdodecryptunauth(), and llsecdodecryptauth() all perform in-place cryptographic transformations on skb data. They build a scatterlist with sginitone() 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. cryptoskcipherencrypt/decrypt, cryptoaeadencrypt/decrypt).

On the RX path, _ieee802154rxhandlepacket() clones the received skb before handing it to each subscriber via ieee802154subifframe(). The cloned skb shares the same underlying data buffer via reference counting. When llsecdodecrypt() 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 skbcowdata() before performing any in-place crypto operation. skbcowdata() 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.

Database specific
{
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/63xxx/CVE-2026-63831.json",
    "cna_assigner": "Linux"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
03556e4d0dbbbf4af9df76f4a3839c86f6afb015
Fixed
3a2b378b3a9ca75d3518d879148d2ad25b5714a9
Fixed
7a831bcd0486788283ef35e396d4282ee01bb0d5
Fixed
ff976ef7c39199ebff33c18034636595016db9f0
Fixed
e28e7fd34c449028325322a3f5127b92594b7396
Fixed
993fd674fe85d114e6a8d3963033d4fbbc2170a8
Fixed
bd968bdd568beacfdf98ec537a87527e85f1d0cf
Fixed
86d531337ea1ba02d9f2bc830d07c683d9bfaade
Fixed
84a04eb5b210643bd67aab81ff805d32f62aa865

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-63831.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
3.16.0
Fixed
5.10.260
Type
ECOSYSTEM
Events
Introduced
5.11.0
Fixed
5.15.211
Type
ECOSYSTEM
Events
Introduced
5.16.0
Fixed
6.1.177
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.6.144
Type
ECOSYSTEM
Events
Introduced
6.7.0
Fixed
6.12.95
Type
ECOSYSTEM
Events
Introduced
6.13.0
Fixed
6.18.38
Type
ECOSYSTEM
Events
Introduced
6.19.0
Fixed
7.1.3

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-63831.json"