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

Crate russh

Dependencies

(59 total, 20 outdated, 1 insecure, 2 possibly insecure)

CrateRequiredLatestStatus
 aes^0.80.8.4up to date
 async-trait^0.1.500.1.89up to date
 aws-lc-rs^1.13.11.16.2up to date
 bitflags^2.02.11.0up to date
 block-padding^0.30.4.2out of date
 byteorder^1.41.5.0up to date
 bytes ⚠️^1.71.11.1maybe insecure
 cbc^0.10.1.2up to date
 criterion^0.30.8.2out of date
 ctr^0.90.9.2up to date
 curve25519-dalek^4.1.34.1.3up to date
 data-encoding^2.32.10.0up to date
 delegate^0.130.13.5up to date
 der^0.70.8.0out of date
 des^0.8.10.8.1up to date
 digest^0.100.11.2out of date
 ecdsa^0.160.16.9up to date
 ed25519-dalek^2.02.2.0up to date
 elliptic-curve^0.130.13.8up to date
 enum_dispatch^0.3.130.3.13up to date
 flate2^1.0.151.1.9up to date
 futures^0.30.3.32up to date
 generic-array^1.3.31.3.5up to date
 getrandom^0.2.150.4.2out of date
 hex-literal^0.41.1.0out of date
 hmac^0.120.13.0out of date
 home^0.50.5.12up to date
 inout^0.10.2.2out of date
 libcrux-ml-kem^0.0.40.0.8out of date
 log^0.4.110.4.29up to date
 md5^0.70.8.0out of date
 num-bigint^0.4.20.4.6up to date
 p256^0.130.13.2up to date
 p384^0.130.13.1up to date
 p521^0.130.13.3up to date
 pageant^0.20.2.0up to date
 pbkdf2^0.120.12.2up to date
 pkcs1^0.8.0-rc.40.7.5up to date
 pkcs5^0.70.7.1up to date
 pkcs8^0.100.10.2up to date
 rand^0.90.10.0out of date
 rand_core=0.10.0-rc-30.10.0out of date
 ring^0.17.140.17.14up to date
 rsa ⚠️^0.10.0-rc.100.9.10insecure
 russh-cryptovec^0.52.00.59.0out of date
 russh-util^0.52.00.52.0up to date
 sec1^0.70.8.1out of date
 sha1^0.10.50.11.0out of date
 sha2^0.10.60.11.0out of date
 signature^2.22.2.0up to date
 spki^0.70.8.0out of date
 ssh-encoding^0.20.2.0up to date
 internal-russh-forked-ssh-key=0.6.160.6.18+upstream-0.6.7out of date
 subtle^2.42.6.1up to date
 thiserror^1.0.302.0.18out of date
 tokio ⚠️^1.17.01.51.0maybe insecure
 typenum^1.171.19.0up to date
 yasna^0.5.00.6.0out of date
 zeroize^1.71.8.2up to date

Dev dependencies

(12 total, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.0.41.0.102up to date
 clap^3.2.34.6.0out of date
 env_logger^0.60.11.10out of date
 rand^0.90.10.0out of date
 ratatui^0.29.00.30.0out of date
 russh-sftp^2.1.02.1.1up to date
 shell-escape^0.10.1.5up to date
 tempfile^3.14.03.27.0up to date
 termion^24.0.6out of date
 tokio ⚠️^1.17.01.51.0maybe insecure
 tokio-fd^0.30.3.0up to date
 tokio-stream^0.1.30.1.18up 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.

bytes: Integer overflow in `BytesMut::reserve`

RUSTSEC-2026-0007

In the unique reclaim path of BytesMut::reserve, the condition

if v_capacity >= new_cap + offset

uses an unchecked addition. When new_cap + offset overflows usize in release builds, this condition may incorrectly pass, causing self.cap to be set to a value that exceeds the actual allocated capacity. Subsequent APIs such as spare_capacity_mut() then trust this corrupted cap value and may create out-of-bounds slices, leading to UB.

This behavior is observable in release builds (integer overflow wraps), whereas debug builds panic due to overflow checks.

PoC

use bytes::*;

fn main() {
    let mut a = BytesMut::from(&b"hello world"[..]);
    let mut b = a.split_off(5);

    // Ensure b becomes the unique owner of the backing storage
    drop(a);

    // Trigger overflow in new_cap + offset inside reserve
    b.reserve(usize::MAX - 6);

    // This call relies on the corrupted cap and may cause UB & HBO
    b.put_u8(b'h');
}

Workarounds

Users of BytesMut::reserve are only affected if integer overflow checks are configured to wrap. When integer overflow is configured to panic, this issue does not apply.