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

Crate russh

Dependencies

(59 total, 18 outdated, 1 insecure, 3 possibly insecure)

CrateRequiredLatestStatus
 aes^0.80.8.4up to date
 aes-gcm ⚠️^0.100.10.3maybe insecure
 async-trait^0.1.500.1.89up 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
 chacha20^0.90.10.0out 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^0.141.3.5out of date
 getrandom^0.2.150.4.2out of date
 hex-literal^0.41.1.0out of date
 hmac^0.120.12.1up to date
 home^0.50.5.12up to date
 inout^0.10.2.2out 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
 once_cell^1.131.21.4up 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.0.30.2.0out of date
 pbkdf2^0.120.12.2up to date
 pkcs1^0.70.7.5up to date
 pkcs5^0.70.7.1up to date
 pkcs8^0.100.10.2up to date
 poly1305^0.80.8.0up to date
 rand^0.80.10.0out of date
 rand_core^0.6.40.10.0out of date
 rsa ⚠️^0.90.9.10insecure
 russh-cryptovec^0.51.00.58.0out of date
 russh-util^0.51.00.52.0out of date
 sec1^0.70.8.0out of date
 sha1^0.10.50.10.6up to date
 sha2^0.10.60.10.9up to date
 signature^2.22.2.0up to date
 spki^0.70.7.3up to date
 ssh-encoding^0.20.2.0up to date
 internal-russh-forked-ssh-key=0.6.100.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.50.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.9out of date
 rand^0.8.50.10.0out of date
 ratatui^0.29.00.30.0out of date
 russh-sftp^2.0.52.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.50.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.

aes-gcm: Plaintext exposed in decrypt_in_place_detached even on tag verification failure

RUSTSEC-2023-0096

Summary

In the AES GCM implementation of decrypt_in_place_detached, the decrypted ciphertext (i.e. the correct plaintext) is exposed even if tag verification fails.

Impact

If a program using the aes-gcm crate's decrypt_in_place* APIs accesses the buffer after decryption failure, it will contain a decryption of an unauthenticated input. Depending on the specific nature of the program this may enable Chosen Ciphertext Attacks (CCAs) which can cause a catastrophic breakage of the cipher including full plaintext recovery.

Details

As seen in the implementation of decrypt_in_place_detached for AES GCM, if the tag verification fails, an error is returned. Because the decryption of the ciphertext is done in place, the plaintext contents are now exposed via buffer.

This should ideally not be the case - as noted in page 17 of NIST's publication Recommendation for Block Cipher Modes of Operation: Galois/Counter Mode (GCM) and GMAC:

In Step 8, the result of Step 7 is compared with the authentication tag that was received as an input: if they are identical, then the plaintext is returned; otherwise,FAIL is returned.

This is seems correctly addressed in the AES GCM SIV implementation, where the decrypted buffer is encrypted again before the error is returned - this fix is straightforward to implement in AES GCM. To ensure that these types of cases are covered during testing, it would be valuable to add test cases like 23, 24 etc from project wycheproof to ensure that when a bad tag is used, there is an error on decryption and that the plaintext value is not exposed.

PoC

To reproduce this issue, I'm using test case 23 from project wycheproof.

    let key = GenericArray::from_slice(&hex!("000102030405060708090a0b0c0d0e0f"));
    let nonce = GenericArray::from_slice(&hex!("505152535455565758595a5b"));
    let tag = GenericArray::from_slice(&hex!("d9847dbc326a06e988c77ad3863e6083")); // bad tag
    let mut ct = hex!("eb156d081ed6b6b55f4612f021d87b39");
    let msg = hex!("202122232425262728292a2b2c2d2e2f");
    let aad = hex!("");
    let cipher = Aes128Gcm::new(&key);
    let _plaintext = cipher.decrypt_in_place_detached(&nonce, &aad, &mut ct, &tag);
    assert_eq!(ct, msg);

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.