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

Crate needroleshere

Dependencies

(40 total, 6 outdated, 1 insecure)

CrateRequiredLatestStatus
 anyhow^1.0.751.0.91up to date
 async-trait^0.1.740.1.83up to date
 axum^0.6.200.7.7out of date
 base16ct^0.2.00.2.0up to date
 base64ct^1.6.01.6.0up to date
 bytes^1.5.01.8.0up to date
 chrono^0.4.310.4.38up to date
 clap^3.2.224.5.20out of date
 crypto-bigint^0.5.30.5.5up to date
 digest^0.10.50.10.7up to date
 ecdsa^0.16.80.16.9up to date
 elliptic-curve^0.13.60.13.8up to date
 generic-array^1.0.01.1.0up to date
 headers^0.3.90.4.0out of date
 http^0.2.91.1.0out of date
 listenfd^1.0.01.0.1up to date
 num-bigint^0.4.30.4.6up to date
 once_cell^1.18.01.20.2up to date
 p256^0.13.20.13.2up to date
 p384^0.13.00.13.0up to date
 pem-rfc7468^0.7.00.7.0up to date
 pkcs1^0.7.50.7.5up to date
 pkcs8^0.10.20.10.2up to date
 rand^0.8.50.8.5up to date
 regex^1.6.01.11.1up to date
 reqwest^0.11.220.12.9out of date
 rfc6979^0.4.00.4.0up to date
 rsa ⚠️^0.9.30.9.6insecure
 sec1^0.7.30.7.3up to date
 secrecy^0.8.00.10.3out of date
 serde^1.0.1901.0.214up to date
 serde_json^1.0.1081.0.132up to date
 sha2^0.10.80.10.8up to date
 thiserror^1.0.501.0.65up to date
 tokio^1.33.01.41.0up to date
 tracing^0.1.400.1.40up to date
 tracing-subscriber^0.3.170.3.18up to date
 url^2.4.12.5.2up to date
 x509-cert^0.2.40.2.5up to date
 zeroize^1.6.01.8.1up to date

Dev dependencies

(5 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 hyper^0.14.271.5.0out of date
 indoc^2.0.42.0.5up to date
 openssl ⚠️^0.10.590.10.68maybe insecure
 temp-dir^0.1.110.1.14up to date
 tower^0.4.130.5.1out of date

Security Vulnerabilities

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.

openssl: `MemBio::get_buf` has undefined behavior with empty buffers

RUSTSEC-2024-0357

Previously, MemBio::get_buf called slice::from_raw_parts with a null-pointer, which violates the functions invariants, leading to undefined behavior. In debug builds this would produce an assertion failure. This is now fixed.