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

Crate adb_client

Dependencies

(23 total, 7 outdated, 1 insecure)

CrateRequiredLatestStatus
 base64^0.22.10.23.1out of date
 bincode^1.3.33.0.0out of date
 byteorder^1.5.01.5.0up to date
 chrono^0.4.400.4.45up to date
 homedir^0.3.40.3.6up to date
 image^0.25.50.25.10up to date
 lazy_static^1.5.01.5.0up to date
 log^0.4.260.4.34up to date
 mdns-sd^0.13.20.21.4out of date
 num-bigint-dig^0.8.40.9.1out of date
 num-traits^0.2.190.2.19up to date
 quick-protobuf^0.8.10.8.1up to date
 rand^0.9.00.10.3out of date
 rcgen^0.13.10.14.10out of date
 regex^1.11.11.13.1up to date
 rsa ⚠️^0.9.70.9.10insecure
 rusb^0.9.40.9.4up to date
 rustls^0.23.220.23.45up to date
 rustls-pki-types^1.11.01.15.1up to date
 serde^1.0.2161.0.229up to date
 serde_repr^0.1.190.1.21up to date
 sha1^0.10.60.11.0out of date
 thiserror^2.0.72.0.20up to date

Dev dependencies

(2 total, 1 outdated)

CrateRequiredLatestStatus
 anyhow^1.0.931.0.104up to date
 criterion^0.5.10.8.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. 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.