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 openidconnect

Dependencies

(19 total, 8 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 base64^0.130.22.1out of date
 chrono ⚠️^0.40.4.40maybe insecure
 http^0.21.3.1out of date
 itertools^0.100.14.0out of date
 log^0.40.4.26up to date
 num-bigint^0.4.30.4.6up to date
 oauth2^4.2.25.0.0out of date
 rand^0.80.9.0out of date
 ring ⚠️^0.160.17.14out of date
 serde^1.01.0.219up to date
 serde-value^0.70.7.0up to date
 serde_derive^1.01.0.219up to date
 serde_json^1.01.0.140up to date
 serde_path_to_error^0.10.1.17up to date
 serde_plain^1.01.0.2up to date
 serde_with^1.133.12.0out of date
 subtle^2.42.6.1up to date
 thiserror^1.02.0.12out of date
 url^2.12.5.4up to date

Dev dependencies

(6 total, 4 outdated)

CrateRequiredLatestStatus
 anyhow^1.01.0.97up to date
 color-backtrace^0.50.7.0out of date
 env_logger^0.90.11.7out of date
 pretty_assertions^1.01.4.1up to date
 reqwest^0.110.12.14out of date
 retry^1.02.0.0out of date

Security Vulnerabilities

chrono: Potential segfault in `localtime_r` invocations

RUSTSEC-2020-0159

Impact

Unix-like operating systems may segfault due to dereferencing a dangling pointer in specific circumstances. This requires an environment variable to be set in a different thread than the affected functions. This may occur without the user's knowledge, notably in a third-party library.

Workarounds

No workarounds are known.

References

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.