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

Crate russh

Dependencies

(41 total, 3 outdated, 1 insecure, 1 possibly insecure)

CrateRequiredLatestStatus
 aes^0.80.8.4up to date
 aes-gcm^0.100.10.3up to date
 async-trait^0.10.1.83up to date
 bitflags^2.02.6.0up to date
 byteorder^1.41.5.0up to date
 bytes^1.71.9.0up to date
 cbc^0.10.1.2up to date
 chacha20^0.90.9.1up to date
 ctr^0.90.9.2up to date
 curve25519-dalek^4.1.34.1.3up to date
 delegate^0.130.13.1up to date
 des^0.8.10.8.1up to date
 digest^0.100.10.7up to date
 elliptic-curve^0.130.13.8up to date
 flate2^1.01.0.35up to date
 futures^0.30.3.31up to date
 generic-array^0.141.1.1out of date
 hex-literal^0.40.4.1up to date
 hmac^0.120.12.1up to date
 log^0.40.4.22up to date
 num-bigint^0.40.4.6up to date
 once_cell^1.131.20.2up to date
 p256^0.130.13.2up to date
 p384^0.130.13.0up to date
 p521^0.130.13.3up to date
 poly1305^0.80.8.0up to date
 rand^0.80.8.5up to date
 rand_core^0.6.40.6.4up to date
 rsa ⚠️^0.90.9.7insecure
 russh-cryptovec^0.48.00.48.0up to date
 russh-keys^0.48.10.49.2out of date
 russh-sftp^2.0.52.0.6up to date
 russh-util^0.48.00.48.0up to date
 sha1^0.100.10.6up to date
 sha2^0.100.10.8up to date
 signature^2.22.2.0up to date
 ssh-encoding^0.20.2.0up to date
 ssh-key^0.60.6.7up to date
 subtle^2.42.6.1up to date
 thiserror^1.02.0.9out of date
 tokio ⚠️^1.17.01.42.0maybe insecure

Dev dependencies

(9 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.01.0.94up to date
 clap^3.24.5.23out of date
 env_logger^0.110.11.6up to date
 rand^0.8.50.8.5up to date
 ratatui^0.29.00.29.0up to date
 shell-escape^0.10.1.5up to date
 termion^24.0.3out of date
 tokio ⚠️^1.17.01.42.0maybe insecure
 tokio-fd^0.30.3.0up to date

Security Vulnerabilities

tokio: reject_remote_clients Configuration corruption

RUSTSEC-2023-0001

On Windows, configuring a named pipe server with pipe_mode will force ServerOptions::reject_remote_clients as false.

This drops any intended explicit configuration for the reject_remote_clients that may have been set as true previously.

The default setting of reject_remote_clients is normally true meaning the default is also overridden as false.

Workarounds

Ensure that pipe_mode is set first after initializing a ServerOptions. For example:

let mut opts = ServerOptions::new();
opts.pipe_mode(PipeMode::Message);
opts.reject_remote_clients(true);

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.