From 12fdf628a5ab7c7eff87032508879146452c4ef7 Mon Sep 17 00:00:00 2001 From: Eugene Date: Mon, 18 Dec 2023 16:18:05 +0100 Subject: [PATCH] bumped russh to fix CVE-2023-48795 --- Cargo.lock | 4 ++-- warpgate-protocol-ssh/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cda0af3c..cefbf045 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3730,9 +3730,9 @@ dependencies = [ [[package]] name = "russh" -version = "0.40.1" +version = "0.40.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23955cec4c4186e8c36f42c5d4043f9fd6cab8702fd08ce1971d966b48ec832f" +checksum = "93dab9e1c313d0d04a42e39c0995943fc38c037e2e3fa9c33685777a1aecdfb2" dependencies = [ "aes", "aes-gcm", diff --git a/warpgate-protocol-ssh/Cargo.toml b/warpgate-protocol-ssh/Cargo.toml index 0979642e..d6815550 100644 --- a/warpgate-protocol-ssh/Cargo.toml +++ b/warpgate-protocol-ssh/Cargo.toml @@ -12,7 +12,7 @@ bimap = "0.6" bytes = "1.3" dialoguer = "0.10" futures = "0.3" -russh = { version = "0.40.1", features = ["vendored-openssl"] } +russh = { version = "0.40.2", features = ["vendored-openssl"] } # russh = { version = "0.35.0-beta.6", features = ["vendored-openssl"], path = "../../russh/russh"} russh-keys = { version = "0.40.1", features = ["vendored-openssl"] } # russh-keys = { version = "0.23.0-beta.1", features = ["vendored-openssl"], path = "../../russh/russh-keys" }