Correct error code processing - CVE-2025-26465
This commit is contained in:
parent
012722dbb6
commit
75116f2e62
69
SOURCES/openssh-9.9p2-error_processing.patch
Normal file
69
SOURCES/openssh-9.9p2-error_processing.patch
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
diff --git a/krl.c b/krl.c
|
||||||
|
index e2efdf06..0d0f6953 100644
|
||||||
|
--- a/krl.c
|
||||||
|
+++ b/krl.c
|
||||||
|
@@ -674,6 +674,7 @@ revoked_certs_generate(struct revoked_certs *rc, struct sshbuf *buf)
|
||||||
|
break;
|
||||||
|
case KRL_SECTION_CERT_SERIAL_BITMAP:
|
||||||
|
if (rs->lo - bitmap_start > INT_MAX) {
|
||||||
|
+ r = SSH_ERR_INVALID_FORMAT;
|
||||||
|
error_f("insane bitmap gap");
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
@@ -1059,6 +1060,7 @@ ssh_krl_from_blob(struct sshbuf *buf, struct ssh_krl **krlp)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
if ((krl = ssh_krl_init()) == NULL) {
|
||||||
|
+ r = SSH_ERR_ALLOC_FAIL;
|
||||||
|
error_f("alloc failed");
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
diff --git a/sshconnect2.c b/sshconnect2.c
|
||||||
|
index a69c4da1..1ee6000a 100644
|
||||||
|
--- a/sshconnect2.c
|
||||||
|
+++ b/sshconnect2.c
|
||||||
|
@@ -99,7 +99,7 @@ verify_host_key_callback(struct sshkey *hostkey, struct ssh *ssh)
|
||||||
|
options.required_rsa_size)) != 0)
|
||||||
|
fatal_r(r, "Bad server host key");
|
||||||
|
if (verify_host_key(xxx_host, xxx_hostaddr, hostkey,
|
||||||
|
- xxx_conn_info) == -1)
|
||||||
|
+ xxx_conn_info) != 0)
|
||||||
|
fatal("Host key verification failed.");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
@@ -699,6 +699,7 @@ input_userauth_pk_ok(int type, u_int32_t seq, struct ssh *ssh)
|
||||||
|
|
||||||
|
if ((pktype = sshkey_type_from_name(pkalg)) == KEY_UNSPEC) {
|
||||||
|
debug_f("server sent unknown pkalg %s", pkalg);
|
||||||
|
+ r = SSH_ERR_INVALID_FORMAT;
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) {
|
||||||
|
@@ -709,6 +710,7 @@ input_userauth_pk_ok(int type, u_int32_t seq, struct ssh *ssh)
|
||||||
|
error("input_userauth_pk_ok: type mismatch "
|
||||||
|
"for decoded key (received %d, expected %d)",
|
||||||
|
key->type, pktype);
|
||||||
|
+ r = SSH_ERR_INVALID_FORMAT;
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -728,6 +730,7 @@ input_userauth_pk_ok(int type, u_int32_t seq, struct ssh *ssh)
|
||||||
|
SSH_FP_DEFAULT);
|
||||||
|
error_f("server replied with unknown key: %s %s",
|
||||||
|
sshkey_type(key), fp == NULL ? "<ERROR>" : fp);
|
||||||
|
+ r = SSH_ERR_INVALID_FORMAT;
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
ident = format_identity(id);
|
||||||
|
diff --git a/sshsig.c b/sshsig.c
|
||||||
|
index 6e03c0b0..3da005d6 100644
|
||||||
|
--- a/sshsig.c
|
||||||
|
+++ b/sshsig.c
|
||||||
|
@@ -879,6 +879,7 @@ cert_filter_principals(const char *path, u_long linenum,
|
||||||
|
}
|
||||||
|
if ((principals = sshbuf_dup_string(nprincipals)) == NULL) {
|
||||||
|
error_f("buffer error");
|
||||||
|
+ r = SSH_ERR_ALLOC_FAIL;
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
/* success */
|
@ -54,7 +54,7 @@
|
|||||||
Summary: An open source implementation of SSH protocol version 2
|
Summary: An open source implementation of SSH protocol version 2
|
||||||
Name: openssh
|
Name: openssh
|
||||||
Version: %{openssh_ver}
|
Version: %{openssh_ver}
|
||||||
Release: %{openssh_rel}%{?dist}
|
Release: %{openssh_rel}%{?dist}.alma.1
|
||||||
URL: http://www.openssh.com/portable.html
|
URL: http://www.openssh.com/portable.html
|
||||||
#URL1: https://github.com/jbeverly/pam_ssh_agent_auth/
|
#URL1: https://github.com/jbeverly/pam_ssh_agent_auth/
|
||||||
Source0: ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-%{version}.tar.gz
|
Source0: ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-%{version}.tar.gz
|
||||||
@ -293,6 +293,9 @@ Patch1019: openssh-9.6p1-CVE-2023-51385.patch
|
|||||||
#upstream commit 96faa0de6c673a2ce84736eba37fc9fb723d9e5c
|
#upstream commit 96faa0de6c673a2ce84736eba37fc9fb723d9e5c
|
||||||
Patch1020: openssh-8.7p1-sigpipe.patch
|
Patch1020: openssh-8.7p1-sigpipe.patch
|
||||||
Patch1021: openssh-9.8p1-upstream-cve-2024-6387.patch
|
Patch1021: openssh-9.8p1-upstream-cve-2024-6387.patch
|
||||||
|
# upstream 6ce00f0c2ecbb9f75023dbe627ee6460bcec78c2
|
||||||
|
# upstream 0832aac79517611dd4de93ad0a83577994d9c907
|
||||||
|
Patch1022: openssh-9.9p2-error_processing.patch
|
||||||
|
|
||||||
License: BSD
|
License: BSD
|
||||||
Requires: /sbin/nologin
|
Requires: /sbin/nologin
|
||||||
@ -519,6 +522,7 @@ popd
|
|||||||
%patch1019 -p1 -b .cve-2023-51385
|
%patch1019 -p1 -b .cve-2023-51385
|
||||||
%patch1020 -p1 -b .earlypipe
|
%patch1020 -p1 -b .earlypipe
|
||||||
%patch1021 -p1 -b .cve-2024-6387
|
%patch1021 -p1 -b .cve-2024-6387
|
||||||
|
%patch1022 -p1 -b .errcode_set
|
||||||
|
|
||||||
autoreconf
|
autoreconf
|
||||||
pushd pam_ssh_agent_auth-pam_ssh_agent_auth-%{pam_ssh_agent_ver}
|
pushd pam_ssh_agent_auth-pam_ssh_agent_auth-%{pam_ssh_agent_ver}
|
||||||
@ -806,6 +810,12 @@ test -f %{sysconfig_anaconda} && \
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Feb 19 2025 Andrew Lukoshko <alukoshko@almalinux.org> - 8.7p1-43.alma.1
|
||||||
|
- Fix missing error codes set and invalid error code checks in OpenSSH. It
|
||||||
|
prevents memory exhaustion attack and a MITM attack when VerifyHostKeyDNS
|
||||||
|
is on (CVE-2025-26465).
|
||||||
|
Resolves: RHEL-78700
|
||||||
|
|
||||||
* Tue Jul 09 2024 Dmitry Belyavskiy <dbelyavs@redhat.com> - 8.7p1-43
|
* Tue Jul 09 2024 Dmitry Belyavskiy <dbelyavs@redhat.com> - 8.7p1-43
|
||||||
- Possible remote code execution due to a race condition (CVE-2024-6409)
|
- Possible remote code execution due to a race condition (CVE-2024-6409)
|
||||||
Resolves: RHEL-45741
|
Resolves: RHEL-45741
|
||||||
|
Loading…
Reference in New Issue
Block a user