Description
Issue summary: ChaCha20-Poly1305 and AES-OCB decryption with an empty
ciphertext can report success without verifying the supplied authentication
tag when the operation is finalized by calling the EVP_Cipher() function.

Impact summary: Applications calling EVP_Cipher() on an empty ciphertext and
expecting the call to check the AEAD tag may accept forged messages.

CWE: CWE-354 (Improper Validation of Integrity Check Value)

Description: The EVP_Cipher() API call for AEAD ciphers behaves like a one
shot encryption and decryption call. It also verifies the AEAD tag after the
decryption operation. However for AES-OCB and ChaCha20-Poly1305 ciphers
it skipped the AEAD tag verification when an empty ciphertext was passed to
the function. The callers of this function might believe that a successful
return indicates a valid AEAD tag for these ciphers, even when that has not
truly been validated in this case.

FIPS impact: no
The FIPS modules in 4.0, 3.6, 3.5, 3.4, and 3.0 are not affected by this CVE
as the affected algorithms are not FIPS approved and thus not implemented
in the FIPS module.
Published: 2026-08-25
Score: 9.1 Critical
EPSS: < 1% Very Low
KEV: No
Impact: Forged AEAD tags accepted by EVP_Cipher()
Action: Update OpenSSL
AI Analysis

Impact

Based on the description, it is inferred that an empty ciphertext supplied to EVP_Cipher() for ChaCha20‑Poly1305 or AES‑OCB bypasses the authentication tag verification step, so the decryption call can succeed without confirming tag validity. This flaw lets an attacker craft forged messages that appear authenticated, compromising data integrity and potentially enabling further tampering or malicious data injection.

Affected Systems

Based on the description, it is inferred that the vulnerability is triggered when the application passes an empty ciphertext to this routine, affecting all installations of OpenSSL that provide ChaCha20‑Poly1305 or AES‑OCB decryption and expose the EVP_Cipher() API, regardless of specific major release.

Risk and Exploitability

Based on the description, it is inferred that the attack vector involves an attacker supplying an empty ciphertext to an application that internally calls EVP_Cipher(). The exploit requires the ability to submit an empty ciphertext to an application that internally calls EVP_Cipher(). The EPSS score is < 1% and the vulnerability is not listed in CISA KEV, indicating limited observed exploitation. However, the lack of authentication tag verification presents a clear integrity threat, especially for protocols or services that rely on these ciphers for secure communication. The CVSS score is 9.1, reflecting a high severity risk that quantifies the potential impact of forging AEAD tags.

Generated by OpenCVE AI on September 2, 2026 at 07:08 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade OpenSSL to a release that includes the patch for CVE‑2026‑75803; the relevant commits are available in the OpenSSL GitHub repository.
  • If an upgrade is not immediately possible, modify application logic to reject empty ciphertexts before calling EVP_Cipher() or switch to an alternative decryption API that performs tag verification, such as EVP_DecryptFinal_ex with explicit tag checks.
  • Review all code paths that use EVP_Cipher() for ChaCha20‑Poly1305 or AES‑OCB and ensure they do not process empty ciphertexts; consider disabling these ciphers for integrity‑critical data if historical usage patterns cannot be guaranteed to misbehave.

Generated by OpenCVE AI on September 2, 2026 at 07:08 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Debian DSA Debian DSA DSA-6465-1 openssl security update
Ubuntu USN Ubuntu USN USN-8678-1 OpenSSL vulnerabilities
Ubuntu USN Ubuntu USN USN-8678-3 OpenSSL vulnerability
History

Fri, 11 Sep 2026 23:45:00 +0000

Type Values Removed Values Added
CPEs cpe:2.3:a:openssl:openssl:*:*:*:*:*:*:*:*

Wed, 02 Sep 2026 08:30:00 +0000

Type Values Removed Values Added
Metrics ssvc

{'options': {'Automatable': 'yes', 'Exploitation': 'none', 'Technical Impact': 'total'}, 'version': '2.0.3'}


Tue, 01 Sep 2026 22:00:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 9.1, 'vector': 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N'}


Tue, 25 Aug 2026 15:00:00 +0000

Type Values Removed Values Added
First Time appeared Openssl
Openssl openssl
Vendors & Products Openssl
Openssl openssl

Tue, 25 Aug 2026 13:15:00 +0000

Type Values Removed Values Added
Description Issue summary: ChaCha20-Poly1305 and AES-OCB decryption with an empty ciphertext can report success without verifying the supplied authentication tag when the operation is finalized by calling the EVP_Cipher() function. Impact summary: Applications calling EVP_Cipher() on an empty ciphertext and expecting the call to check the AEAD tag may accept forged messages. CWE: CWE-354 (Improper Validation of Integrity Check Value) Description: The EVP_Cipher() API call for AEAD ciphers behaves like a one shot encryption and decryption call. It also verifies the AEAD tag after the decryption operation. However for AES-OCB and ChaCha20-Poly1305 ciphers it skipped the AEAD tag verification when an empty ciphertext was passed to the function. The callers of this function might believe that a successful return indicates a valid AEAD tag for these ciphers, even when that has not truly been validated in this case. FIPS impact: no The FIPS modules in 4.0, 3.6, 3.5, 3.4, and 3.0 are not affected by this CVE as the affected algorithms are not FIPS approved and thus not implemented in the FIPS module.
Title AEAD Forgeries with Empty Ciphertext When Using EVP_Cipher()
Weaknesses CWE-354
References

cve-icon MITRE

Status: PUBLISHED

Assigner: openssl

Published:

Updated: 2026-09-01T18:23:06.793Z

Reserved: 2026-08-18T09:34:32.659Z

Link: CVE-2026-75803

cve-icon Vulnrichment

Updated: 2026-09-01T18:23:03.379Z

cve-icon NVD

Status : Analyzed

Published: 2026-08-25T13:19:29.570

Modified: 2026-09-11T21:17:17.823

Link: CVE-2026-75803

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-09-02T07:15:04Z

Weaknesses
  • CWE-354

    Improper Validation of Integrity Check Value