Loading...
Skip to main content

CVE-2026-41678

HIGH

rust-openssl has incorrect bounds assertion in aes key wrap

Published April 22, 2026Updated May 5, 2026Source: osv

Summary

### Summary ``aes::unwrap_key()`` has an incorrect bounds assertion on the out buffer size, which can lead to out-of-bounds write. ### Details ``aes::unwrap_key()`` contains an incorrect assertion: it checks that `out.len() + 8 <= in_.len()`, but this condition is reversed. The intended invariant is `out.len() >= in_.len() - 8`, ensuring the output buffer is large enough. Because of the inverted check, the function only accepts buffers at or below the minimum required size and rejects larger ones. If a smaller buffer is provided the function will write past the end of `out` by `in_.len() - 8 - out.len()` bytes, causing an out-of-bounds write from a safe public function. ### Impact Vulnerable applications using AES keywrap and allowing attacker controlled buffer sizes could have an attacker trigger an out-of-bounds write.

Remediation

Upgrade to the fixed version using your package manager.

Cargo
Update openssl to 0.10.78 or later
cargo update -p openssl --precise 0.10.78

After upgrading, run your dependency scanner again to confirm the vulnerability is resolved.

Affected Packages (1)

PackageEcosystemAffectedFixed In
openssl
crates.io
All versions0.10.78

Vulnerability Classification

Common Weakness Enumeration (CWE) identifiers for this vulnerability type.

  • CWE-787
    Out-of-bounds WriteMITRE

CVSS Score Breakdown

What the CVSS (Common Vulnerability Scoring System) 9.3 score means for each attack dimension.

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Confidentiality
Integrity
Availability

CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:U

Frequently Asked Questions

What is CVE-2026-41678?
rust-openssl has incorrect bounds assertion in aes key wrap This vulnerability has been assigned a severity rating of HIGH (CVSS score: 9.3/10).
How do I check if my project is affected by CVE-2026-41678?
CVE-2026-41678 affects openssl. Use GeekWala's free vulnerability scanner to check your dependencies against CVE-2026-41678 and 200,000+ other known vulnerabilities.

Severity & Exploitability

CVSS Score
9.3

Exploitation is straightforward and causes maximum impact. Patch immediately.

Also Known As

GHSA-8c75-8mhr-p7r9

Related CVEs

  • CVE-2016-10931
    HIGH

    SSL/TLS MitM vulnerability due to insecure defaults

  • CVE-2016-10931
    HIGH

    Improper Certificate Validation in openssl

  • CVE-2026-63135
    HIGH

    YOURLS has stored XSS in referrer statistics chart via crafted Referer header

  • CVE-2026-41681
    HIGH

    rust-openssl: rustMdCtxRef::digest_final() writes past caller buffer with no length check

  • CVE-2026-41898
    HIGH

    rust-openssl: Unchecked callback length in PSK/cookie trampolines leaks adjacent memory to peer

  • CVE-2026-41676
    HIGH

    rust-openssl: Deriver::derive and PkeyCtxRef::derive can overflow short buffers on OpenSSL 1.1.1

  • CVE-2026-42327
    HIGH

    rust-openssl has undefined behavior in X509Ref::ocsp_responders for certificates with non-UTF-8 OCSP URLs

  • CVE-2026-41677
    LOW

    rust-opennssl has an Out-of-bounds read in PEM password callback when returning an oversized length

Check if you're affected

Scan your dependencies to see if this vulnerability affects your projects.

Scan Your Dependencies