This project contains known security vulnerabilities. Find detailed information at the bottom.

Crate openidconnect

Dependencies

(24 total, 3 outdated, 1 insecure, 1 possibly insecure)

CrateRequiredLatestStatus
 base64^0.130.22.1out of date
 chrono ⚠️^0.40.4.38maybe insecure
 dyn-clone^1.0.101.0.17up to date
 ed25519-dalek^2.0.02.1.1up to date
 hmac^0.12.10.12.1up to date
 http^0.21.1.0out of date
 itertools^0.100.13.0out of date
 log^0.40.4.21up to date
 oauth2^4.4.14.4.2up to date
 p256^0.13.20.13.2up to date
 p384^0.13.00.13.0up to date
 rand^0.8.50.8.5up to date
 rsa ⚠️^0.9.20.9.6insecure
 serde^1.01.0.202up to date
 serde-value^0.70.7.0up to date
 serde_derive^1.01.0.202up to date
 serde_json^1.01.0.117up to date
 serde_path_to_error^0.10.1.16up to date
 serde_plain^1.01.0.2up to date
 serde_with^33.8.1up to date
 sha2^0.10.60.10.8up to date
 subtle^2.42.5.0up to date
 thiserror^1.01.0.61up to date
 url^2.42.5.0up to date

Dev dependencies

(6 total, 4 outdated)

CrateRequiredLatestStatus
 anyhow^1.01.0.85up to date
 color-backtrace^0.50.6.1out of date
 env_logger^0.90.11.3out of date
 pretty_assertions^1.01.4.0up to date
 reqwest^0.110.12.4out 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

rsa: Marvin Attack: potential key recovery through timing sidechannels

RUSTSEC-2023-0071

Impact

Due to a non-constant-time implementation, information about the private key is leaked through timing information which is observable over the network. An attacker may be able to use that information to recover the key.

Patches

No patch is yet available, however work is underway to migrate to a fully constant-time implementation.

Workarounds

The only currently available workaround is to avoid using the rsa crate in settings where attackers are able to observe timing information, e.g. local use on a non-compromised computer is fine.

References

This vulnerability was discovered as part of the "Marvin Attack", which revealed several implementations of RSA including OpenSSL had not properly mitigated timing sidechannel attacks.