CVE-2026-53016
Received Received - Intake
Buffer Overrun in Linux Kernel Crypto CCP Driver

Publication date: 2026-06-24

Last updated on: 2026-06-24

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-06-24
Generated
2026-06-25
AI Q&A
2026-06-24
EPSS Evaluated
N/A
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-UNKNOWN
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.

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