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

Crate needroleshere

Dependencies

(40 total, 22 outdated, 1 insecure)

CrateRequiredLatestStatus
 anyhow^1.0.751.0.104up to date
 async-trait^0.1.740.1.92up to date
 axum^0.6.200.8.9out of date
 base16ct^0.2.01.0.0out of date
 base64ct^1.6.01.8.3up to date
 bytes^1.5.01.12.1up to date
 chrono^0.4.310.4.45up to date
 clap^3.2.224.6.7out of date
 crypto-bigint^0.5.30.7.5out of date
 digest^0.10.50.11.3out of date
 ecdsa^0.16.80.17.0out of date
 elliptic-curve^0.13.60.14.1out of date
 generic-array^1.0.01.4.5up to date
 headers^0.3.90.4.1out of date
 http^0.2.91.5.0out of date
 listenfd^1.0.01.0.2up to date
 num-bigint^0.4.30.5.1out of date
 once_cell^1.18.01.21.4up to date
 p256^0.13.20.14.0out of date
 p384^0.13.00.14.0out of date
 pem-rfc7468^0.7.01.0.0out of date
 pkcs1^0.7.50.7.5up to date
 pkcs8^0.10.20.11.0out of date
 rand^0.8.50.10.2out of date
 regex^1.6.01.13.1up to date
 reqwest^0.11.220.13.5out of date
 rfc6979^0.4.00.6.0out of date
 rsa ⚠️^0.9.30.9.10insecure
 sec1^0.7.30.8.1out of date
 secrecy^0.8.00.10.3out of date
 serde^1.0.1901.0.229up to date
 serde_json^1.0.1081.0.151up to date
 sha2^0.10.80.11.0out of date
 thiserror^1.0.502.0.20out of date
 tokio^1.33.01.53.1up to date
 tracing^0.1.400.1.44up to date
 tracing-subscriber^0.3.170.3.23up to date
 url^2.4.12.5.8up to date
 x509-cert^0.2.40.3.0out of date
 zeroize^1.6.01.9.0up to date

Dev dependencies

(5 total, 3 outdated)

CrateRequiredLatestStatus
 hyper^0.14.271.11.1out of date
 indoc^2.0.42.0.7up to date
 openssl^0.10.590.10.81up to date
 temp-dir^0.1.110.2.0out of date
 tower^0.4.130.5.3out 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. The crypto-bigint migration (RustCrypto/RSA#394) did not close this. Tracking is RustCrypto/RSA#626 (padding still not constant-time). Implicit rejection work is in RustCrypto/RSA#680; default-path blinding is in RustCrypto/RSA#702.

Still affected as of 2026-09-12: rsa 0.9.10 (latest stable) and rsa 0.10.0-rc.18 (latest). patched = [] is intentional.

Workarounds

Avoid using the rsa crate in settings where attackers can observe timing, for example over the network. 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.