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

Crate needroleshere

Dependencies

(40 total, 9 outdated, 1 insecure)

CrateRequiredLatestStatus
 anyhow^1.0.751.0.98up to date
 async-trait^0.1.740.1.88up to date
 axum^0.6.200.8.3out of date
 base16ct^0.2.00.2.0up to date
 base64ct^1.6.01.7.3up to date
 bytes^1.5.01.10.1up to date
 chrono^0.4.310.4.40up to date
 clap^3.2.224.5.36out of date
 crypto-bigint^0.5.30.6.1out of 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.2.0up to date
 headers^0.3.90.4.0out of date
 http^0.2.91.3.1out of date
 listenfd^1.0.01.0.2up to date
 num-bigint^0.4.30.4.6up to date
 once_cell^1.18.01.21.3up to date
 p256^0.13.20.13.2up to date
 p384^0.13.00.13.1up 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.9.0out of date
 regex^1.6.01.11.1up to date
 reqwest^0.11.220.12.15out of date
 rfc6979^0.4.00.4.0up to date
 rsa ⚠️^0.9.30.9.8insecure
 sec1^0.7.30.7.3up to date
 secrecy^0.8.00.10.3out of date
 serde^1.0.1901.0.219up to date
 serde_json^1.0.1081.0.140up to date
 sha2^0.10.80.10.8up to date
 thiserror^1.0.502.0.12out of date
 tokio^1.33.01.44.2up to date
 tracing^0.1.400.1.41up to date
 tracing-subscriber^0.3.170.3.19up to date
 url^2.4.12.5.4up 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.6.0out of date
 indoc^2.0.42.0.6up to date
 openssl ⚠️^0.10.590.10.72maybe insecure
 temp-dir^0.1.110.1.14up to date
 tower^0.4.130.5.2out 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: Use-After-Free in `Md::fetch` and `Cipher::fetch`

RUSTSEC-2025-0022

When a Some(...) value was passed to the properties argument of either of these functions, a use-after-free would result.

In practice this would nearly always result in OpenSSL treating the properties as an empty string (due to CString::drop's behavior).

The maintainers thank quitbug for reporting this vulnerability to us.