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

Crate slauth

Dependencies

(31 total, 9 outdated, 1 insecure)

CrateRequiredLatestStatus
 sha2^0.100.11.0out of date
 hmac^0.120.13.0out of date
 sha-1^0.100.10.1up to date
 time^0.30.3.55up to date
 base32^0.50.5.1up to date
 hex^0.40.4.3up to date
 rsa ⚠️^0.9.80.9.10insecure
 rand_core^0.6.40.10.1out of date
 x509-parser^0.17.00.18.1out of date
 base64^0.220.23.1out of date
 byteorder^1.51.5.0up to date
 ring^0.170.17.14up to date
 untrusted^0.9.00.9.0up to date
 serde^1.01.0.229up to date
 serde_repr^0.10.1.21up to date
 serde_derive^1.01.0.229up to date
 serde_bytes^0.110.11.19up to date
 serde_json^1.01.0.151up to date
 serde_cbor^0.110.11.2up to date
 webpki^0.220.22.4up to date
 bytes^1.101.12.1up to date
 http^1.31.5.0up to date
 uuid^1.181.26.1up to date
 ed25519-dalek^2.2.03.0.0out of date
 p256^0.13.20.14.0out of date
 indexmap^2.12.02.14.2up to date
 jni^0.21.10.22.4out of date
 wasm-bindgen^0.2.1040.2.128up to date
 js-sys^0.3.810.3.105up to date
 getrandom^0.20.4.3out of date
 serde-wasm-bindgen^0.6.50.6.5up to date

Dev dependencies

(8 total, 2 outdated)

CrateRequiredLatestStatus
 serde_json^1.01.0.151up to date
 serde_cbor^0.110.11.2up to date
 uuid^1.181.26.1up to date
 rand^0.90.10.3out of date
 bytes^1.101.12.1up to date
 wasm-bindgen-test^0.3.540.3.78up to date
 tokio^11.53.1up to date
 async-stream>=0.3, <0.3.40.3.6out 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.