RustSec logo

HistoryEditJSON (OSV)

RUSTSEC-2026-0285

TLS 1.3 handshake messages incorrectly accepted across encryption level boundaries

Reported
Issued
Package
rustls (crates.io)
Type
Vulnerability
Categories
Aliases
References
CVSS Score
5.3 MEDIUM
CVSS Details
Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality Impact
Low
Integrity Impact
None
Availability Impact
None
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
Patched
  • >=0.23.45
Unaffected
  • <0.23.13

Description

Rustls accepted TLS 1.3 handshake messages sent at the wrong encryption level when they followed a key-changing message in the same record. For example, a plaintext EncryptedExtensions message packed into the same record as the ServerHello was accepted.

RFC 8446 section 5.1 requires that handshake messages do not span key changes, and that implementations terminate the connection with an "unexpected_message" alert if they do.

The handshake transcript is still authenticated, so a network-position attacker cannot use this to alter or complete a handshake; the practical effect is that a peer could send handshake messages that should be encrypted in plaintext without rustls rejecting the connection.

This is functionally the same bug as Go's GO-2026-4340 (CVE-2025-61730).

Advisory available under CC0-1.0 license.