CVE-2026-53016
Awaiting Analysis Awaiting Analysis - Queue

Buffer Overrun in Linux Kernel Crypto CCP Driver

Vulnerability report for CVE-2026-53016, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-06-24

Last updated on: 2026-07-14

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: crypto: ccp - copy IV using skcipher ivsize AF_ALG rfc3686-ctr-aes-ccp requests pass an 8-byte IV to the driver. ccp_aes_complete() restores AES_BLOCK_SIZE bytes into the caller's IV buffer while RFC3686 skciphers expose an 8-byte IV, so the restore overruns the provided buffer. Use crypto_skcipher_ivsize() to copy only the algorithm's IV length.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-06-24
Last Modified
2026-07-14
Generated
2026-07-15
AI Q&A
2026-06-24
EPSS Evaluated
2026-07-13
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
linux linux_kernel *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-805 The product uses a sequential operation to read or write a buffer, but it uses an incorrect length value that causes it to access memory that is outside of the bounds of the buffer.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability exists in the Linux kernel's crypto subsystem, specifically in the ccp driver handling AES encryption with the rfc3686-ctr-aes-ccp algorithm. The issue arises because the driver expects an 8-byte initialization vector (IV) but incorrectly copies AES_BLOCK_SIZE (which is larger) bytes back into the IV buffer. This causes a buffer overrun since the buffer only has space for 8 bytes.

The root cause is that the function ccp_aes_complete() restores more bytes than the IV buffer can hold, leading to memory corruption. The fix involves using the correct IV size by calling crypto_skcipher_ivsize() to ensure only the appropriate number of bytes are copied.

Impact Analysis

This vulnerability can lead to a buffer overrun in the kernel's crypto driver, which may cause memory corruption. Such memory corruption can potentially be exploited to cause system instability, crashes, or even allow an attacker to execute arbitrary code with kernel privileges.

Because this occurs in the cryptographic subsystem, it might also affect the integrity and confidentiality of encrypted data processed by the affected driver.

Mitigation Strategies

The vulnerability has been resolved in the Linux kernel by correcting the way the IV (Initialization Vector) is copied in the crypto ccp driver. To mitigate this vulnerability, you should update your Linux kernel to a version that includes this fix.

Specifically, ensure your system is running a Linux kernel version released on or after 2026-06-24 that applies the fix where crypto_skcipher_ivsize() is used to copy only the algorithm's IV length, preventing buffer overruns.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-53016. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart