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 lorenz

Dependencies

(7 total, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 ring ⚠️^0.14.60.17.14out of date
 x25519-dalek^0.5.22.0.1out of date
 rand_os^0.1.30.2.2out of date
 lazy_static^1.3.01.5.0up to date
 structopt^0.20.3.26out of date
 rustc-hex^2.02.1.0up to date
 zeroize^0.9.11.8.1out of date

Dev dependencies

(2 total, 1 outdated)

CrateRequiredLatestStatus
 tempfile^3.03.19.1up to date
 rand^0.6.50.9.0out of 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.