From 258438872d0d662fc71e93a4361e82dcfa12b44b Mon Sep 17 00:00:00 2001 From: Binqin666 Date: Sat, 2 Aug 2025 07:06:22 +0000 Subject: [PATCH] fix the missing member of the struct Authmethod method_gsskeyex --- backport-openssh-8.0p1-gssapi-keyex.patch | 3 ++- openssh.spec | 8 +++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/backport-openssh-8.0p1-gssapi-keyex.patch b/backport-openssh-8.0p1-gssapi-keyex.patch index 02b3e8b..3f40ace 100644 --- a/backport-openssh-8.0p1-gssapi-keyex.patch +++ b/backport-openssh-8.0p1-gssapi-keyex.patch @@ -215,12 +215,13 @@ Reference:https://src.fedoraproject.org/rpms/openssh/blob/rawhide/f/backport-ope else logit("GSSAPI MIC check failed"); -@@ -326,6 +370,12 @@ input_gssapi_mic(int type, u_int32_t plen, struct ssh *ssh) +@@ -326,6 +370,13 @@ input_gssapi_mic(int type, u_int32_t plen, struct ssh *ssh) return 0; } +Authmethod method_gsskeyex = { + "gssapi-keyex", ++ NULL, + userauth_gsskeyex, + &options.gss_authentication +}; diff --git a/openssh.spec b/openssh.spec index f02bd80..28b32e6 100644 --- a/openssh.spec +++ b/openssh.spec @@ -6,7 +6,7 @@ %{?no_gtk2:%global gtk2 0} %global sshd_uid 74 -%global openssh_release 35 +%global openssh_release 36 Name: openssh Version: 8.8p1 @@ -528,6 +528,12 @@ getent passwd sshd >/dev/null || \ %attr(0644,root,root) %{_mandir}/man8/sftp-server.8* %changelog +* Fri Aug 1 2025 zhangbinqin - 8.8p1-36 +- Type:bugfix +- CVE:NA +- SUG:NA +- DESC:fix the missing member of the struct Authmethod method_gsskeyex + * Mon Apr 14 2025 hdliu - 8.8p1-35 - Type:CVE - CVE:CVE-2025-32728 -- Gitee