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

Crate reqsign-google

Dependencies

(16 total, 1 insecure)

CrateRequiredLatestStatus
 aes-gcm^0.110.11.1up to date
 asyncband^0.7.10.7.2up to date
 base64^0.230.23.1up to date
 bytes^11.12.1up to date
 form_urlencoded^11.2.2up to date
 http^11.5.0up to date
 log^0.40.4.34up to date
 percent-encoding^22.3.2up to date
 prost^0.140.14.4up to date
 reqsign-aws-v4^3.3.13.3.1up to date
 reqsign-core^3.3.23.3.2up to date
 rsa ⚠️^0.9.20.9.10insecure
 serde^11.0.229up to date
 serde_json^11.0.151up to date
 tokio^11.53.1up to date
 zeroize^11.9.0up to date

Dev dependencies

(7 total, all up-to-date)

CrateRequiredLatestStatus
 asyncband^0.7.10.7.2up to date
 dotenvy^0.150.15.7up to date
 env_logger^0.110.11.11up to date
 reqsign-file-read-tokio^3.0.73.0.7up to date
 reqsign-http-send-reqwest^4.0.74.0.7up to date
 reqwest^0.13.10.13.5up to date
 tokio^11.53.1up to 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.