This project might be open to known security vulnerabilities, which can be prevented by tightening the version range of affected dependencies. Find detailed information at the bottom.

Crate rustls

Dependencies

(7 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 aws-lc-rs^1.51.13.0up to date
 log^0.4.40.4.27up to date
 rustls-pki-types^11.11.0up to date
 ring ⚠️^0.170.17.14maybe insecure
 subtle^2.5.02.6.1up to date
 rustls-webpki^0.102.10.103.1out of date
 zeroize^1.6.01.8.1up to date

Dev dependencies

(6 total, 2 outdated)

CrateRequiredLatestStatus
 base64^0.210.22.1out of date
 bencher^0.1.50.1.5up to date
 env_logger^0.100.11.8out of date
 log^0.4.40.4.27up to date
 rustls-pemfile^22.2.0up to date
 webpki-roots^0.260.26.8up to date

Security Vulnerabilities

ring: Some AES functions may panic when overflow checking is enabled.

RUSTSEC-2025-0009

ring::aead::quic::HeaderProtectionKey::new_mask() may panic when overflow checking is enabled. In the QUIC protocol, an attacker can induce this panic by sending a specially-crafted packet. Even unintentionally it is likely to occur in 1 out of every 2**32 packets sent and/or received.

On 64-bit targets operations using ring::aead::{AES_128_GCM, AES_256_GCM} may panic when overflow checking is enabled, when encrypting/decrypting approximately 68,719,476,700 bytes (about 64 gigabytes) of data in a single chunk. Protocols like TLS and SSH are not affected by this because those protocols break large amounts of data into small chunks. Similarly, most applications will not attempt to encrypt/decrypt 64GB of data in one chunk.

Overflow checking is not enabled in release mode by default, but RUSTFLAGS="-C overflow-checks" or overflow-checks = true in the Cargo.toml profile can override this. Overflow checking is usually enabled by default in debug mode.