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 cargo-about

Dependencies

(26 total, 2 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.01.0.102up to date
 codespan^0.130.13.1up to date
 codespan-reporting^0.130.13.1up to date
 ignore^0.40.4.25up to date
 krates^0.210.21.1up to date
 libc^0.20.2.186up to date
 log^0.40.4.29up to date
 parking_lot^0.120.12.5up to date
 memchr^2.82.8.0up to date
 rayon^1.51.12.0up to date
 ureq^3.33.3.0up to date
 ring ⚠️^0.170.17.14maybe insecure
 rustls ⚠️^0.230.23.40maybe insecure
 serde^1.01.0.228up to date
 serde_json^1.01.0.149up to date
 semver^1.01.0.28up to date
 spdx^0.130.13.4up to date
 toml-span^0.70.7.1up to date
 twox-hash^2.02.1.2up to date
 url^2.52.5.8up to date
 clap^4.54.6.1up to date
 fern^0.70.7.1up to date
 jiff^0.20.2.24up to date
 handlebars^6.06.4.0up to date
 mimalloc^0.10.1.50up to date
 nu-ansi-term^0.500.50.3up to date

Dev dependencies

(3 total, all up-to-date)

CrateRequiredLatestStatus
 assert_fs^1.0.71.1.3up to date
 assert_cmd^2.22.2.1up to date
 predicates^3.03.1.4up 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.