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 iroh-quinn-proto

Dependencies

(15 total, 2 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 arbitrary^1.0.11.4.1up to date
 aws-lc-rs^1.91.12.6up to date
 bytes^11.10.1up to date
 getrandom^0.20.3.1out of date
 rand^0.80.9.0out of date
 ring ⚠️^0.170.17.14maybe insecure
 rustc-hash^22.1.1up to date
 rustls ⚠️^0.23.50.23.23maybe insecure
 rustls-pki-types^1.71.11.0up to date
 rustls-platform-verifier^0.50.5.0up to date
 slab^0.4.90.4.9up to date
 thiserror^2.0.32.0.12up to date
 tinyvec^1.11.9.0up to date
 tracing^0.1.100.1.41up to date
 web-time^11.1.0up to date

Dev dependencies

(6 total, 1 outdated)

CrateRequiredLatestStatus
 assert_matches^1.11.5.0up to date
 hex-literal^0.41.0.0out of date
 lazy_static^11.5.0up to date
 rcgen^0.130.13.2up to date
 tracing-subscriber^0.3.10.3.19up to date
 wasm-bindgen-test^0.3.450.3.50up to date

Security Vulnerabilities

rustls: rustls network-reachable panic in `Acceptor::accept`

RUSTSEC-2024-0399

A bug introduced in rustls 0.23.13 leads to a panic if the received TLS ClientHello is fragmented. Only servers that use rustls::server::Acceptor::accept() are affected.

Servers that use tokio-rustls's LazyConfigAcceptor API are affected.

Servers that use tokio-rustls's TlsAcceptor API are not affected.

Servers that use rustls-ffi's rustls_acceptor_accept API are affected.

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.