From 538481c33c55973c284715205c5a559551384b45 Mon Sep 17 00:00:00 2001 From: Daniel Wiegert Date: Thu, 11 Jul 2024 23:32:38 +0200 Subject: [PATCH] update to ssh V9.8.P1 to fix CVE-2024-6387 (#412) * update to ssh V9.8.P1 to fix CVE-2024-6387 * update to ssh V9.8.P1 to fix CVE-2024-6387 --- Dockerfile | 6 +++--- e2e/fixed_test.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index e947e938..1f9686c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,12 +16,12 @@ FROM builder as testrunner RUN apt update && apt install -y autoconf automake libssl-dev libz-dev RUN cd /tmp && \ - curl -fsSL https://github.com/openssh/openssh-portable/archive/refs/tags/V_9_7_P1.tar.gz | tar xz && \ - cd openssh-portable-V_9_7_P1 && \ + curl -fsSL https://github.com/openssh/openssh-portable/archive/refs/tags/V_9_8_P1.tar.gz | tar xz && \ + cd openssh-portable-V_9_8_P1 && \ autoreconf && \ ./configure && \ make ssh && \ - cp ssh /usr/bin/ssh-9.7.1p1 + cp ssh /usr/bin/ssh-9.8.1p1 FROM docker.io/busybox # LABEL maintainer="Boshi Lian" diff --git a/e2e/fixed_test.go b/e2e/fixed_test.go index 23ff538f..1250f597 100644 --- a/e2e/fixed_test.go +++ b/e2e/fixed_test.go @@ -34,7 +34,7 @@ func TestFixed(t *testing.T) { targetfie := uuid.New().String() c, stdin, stdout, err := runCmd( - "ssh-9.7.1p1", + "ssh-9.8.1p1", "-v", "-o", "StrictHostKeyChecking=no",