Compare commits
No commits in common. "c8" and "c8-beta" have entirely different histories.
@ -153,7 +153,7 @@ index 7ebe61321419f..1cecb649cb623 100644
|
|||||||
if(rc == SSH_OK) {
|
if(rc == SSH_OK) {
|
||||||
sshc->authed = TRUE;
|
sshc->authed = TRUE;
|
||||||
infof(data, "completed keyboard interactive authentication\n");
|
infof(data, "completed keyboard interactive authentication\n");
|
||||||
+ state(conn, SSH_AUTH_DONE);
|
+ state(data, SSH_AUTH_DONE);
|
||||||
+ }
|
+ }
|
||||||
+ else {
|
+ else {
|
||||||
+ MOVE_TO_PASSWD_AUTH;
|
+ MOVE_TO_PASSWD_AUTH;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
Summary: A utility for getting files from remote servers (FTP, HTTP, and others)
|
Summary: A utility for getting files from remote servers (FTP, HTTP, and others)
|
||||||
Name: curl
|
Name: curl
|
||||||
Version: 7.61.1
|
Version: 7.61.1
|
||||||
Release: 33%{?dist}.5
|
Release: 34%{?dist}
|
||||||
License: MIT
|
License: MIT
|
||||||
Source: https://curl.haxx.se/download/%{name}-%{version}.tar.xz
|
Source: https://curl.haxx.se/download/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
@ -154,26 +154,26 @@ Patch52: 0052-curl-7.61.1-certs.patch
|
|||||||
# when keyboard-interactive auth fails, try password
|
# when keyboard-interactive auth fails, try password
|
||||||
Patch53: 0053-curl-7.61.1-password-when-keyboard-interactive-fails.patch
|
Patch53: 0053-curl-7.61.1-password-when-keyboard-interactive-fails.patch
|
||||||
|
|
||||||
# fix cookie injection with none file (CVE-2023-38546)
|
# cap SFTP packet size sent
|
||||||
Patch54: 0054-curl-7.61.1-CVE-2023-38546.patch
|
Patch54: 0054-curl-7.61.1-64K-sftp.patch
|
||||||
|
|
||||||
# unify the upload/method handling (CVE-2023-28322)
|
# unify the upload/method handling (CVE-2023-28322)
|
||||||
Patch55: 0055-curl-7.61.1-CVE-2023-28322.patch
|
Patch55: 0055-curl-7.61.1-CVE-2023-28322.patch
|
||||||
|
|
||||||
|
# fix cookie injection with none file (CVE-2023-38546)
|
||||||
|
Patch56: 0056-curl-7.61.1-CVE-2023-38546.patch
|
||||||
|
|
||||||
# consolidate nghttp2_session_mem_recv() call paths
|
# consolidate nghttp2_session_mem_recv() call paths
|
||||||
Patch56: 0056-curl-7.61.1-consolidate-nghttp2-session-mem-recv.patch
|
Patch57: 0057-curl-7.61.1-consolidate-nghttp2-session-mem-recv.patch
|
||||||
|
|
||||||
# when marked for closure and wanted to close == OK
|
# when marked for closure and wanted to close == OK
|
||||||
Patch57: 0057-curl-7.61.1-error-in-the-HTTP2-framing-layer.patch
|
Patch58: 0058-curl-7.61.1-error-in-the-HTTP2-framing-layer.patch
|
||||||
|
|
||||||
# lowercase the domain names before PSL checks (CVE-2023-46218)
|
# lowercase the domain names before PSL checks (CVE-2023-46218)
|
||||||
Patch58: 0058-curl-7.61.1-CVE-2023-46218.patch
|
Patch59: 0059-curl-7.61.1-CVE-2023-46218.patch
|
||||||
|
|
||||||
# lowercase headernames
|
# lowercase headernames
|
||||||
Patch59: 0059-curl-7.61.1-lowercase-headernames.patch
|
Patch60: 0060-curl-7.61.1-lowercase-headernames.patch
|
||||||
|
|
||||||
# cap SFTP packet size sent
|
|
||||||
Patch60: 0060-curl-7.61.1-64K-sftp.patch
|
|
||||||
|
|
||||||
# patch making libcurl multilib ready
|
# patch making libcurl multilib ready
|
||||||
Patch101: 0101-curl-7.32.0-multilib.patch
|
Patch101: 0101-curl-7.32.0-multilib.patch
|
||||||
@ -196,7 +196,7 @@ URL: https://curl.haxx.se/
|
|||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
BuildRequires: brotli-devel
|
BuildRequires: brotli-devel
|
||||||
BuildRequires: coreutils
|
BuildRequires: coreutils
|
||||||
BuildRequires: clang
|
BuildRequires: gcc
|
||||||
BuildRequires: groff
|
BuildRequires: groff
|
||||||
BuildRequires: krb5-devel
|
BuildRequires: krb5-devel
|
||||||
BuildRequires: libidn2-devel
|
BuildRequires: libidn2-devel
|
||||||
@ -437,8 +437,6 @@ echo "582" >> tests/data/DISABLED
|
|||||||
sed -e 's/^35$/35,52/' -i tests/data/test323
|
sed -e 's/^35$/35,52/' -i tests/data/test323
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export CC=/usr/bin/clang
|
|
||||||
export CXX=/usr/bin/clang++
|
|
||||||
mkdir build-{full,minimal}
|
mkdir build-{full,minimal}
|
||||||
export common_configure_opts=" \
|
export common_configure_opts=" \
|
||||||
--cache-file=../config.cache \
|
--cache-file=../config.cache \
|
||||||
@ -572,22 +570,13 @@ rm -f ${RPM_BUILD_ROOT}%{_libdir}/libcurl.la
|
|||||||
%{_libdir}/libcurl.so.4.[0-9].[0-9].minimal
|
%{_libdir}/libcurl.so.4.[0-9].[0-9].minimal
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Jan 24 2024 Jacek Migacz <jmigacz@redhat.com> - 7.61.1-33.el8_9.5
|
* Tue Sep 19 2023 Jacek Migacz <jmigacz@redhat.com> - 7.61.1-34
|
||||||
- cap SFTP packet size sent (RHEL-5485)
|
- when keyboard-interactive auth fails, try password (#2229800)
|
||||||
|
- cap SFTP packet size sent (RHEL-5311)
|
||||||
* Tue Dec 05 2023 Jacek Migacz <jmigacz@redhat.com> - 7.61.1-33.el8_9.4
|
|
||||||
- unify the upload/method handling (CVE-2023-28322)
|
- unify the upload/method handling (CVE-2023-28322)
|
||||||
- fix HTTP2 connection failure with HTTP2 framing layer (RHEL-15296)
|
|
||||||
- lowercase the domain names before PSL checks (CVE-2023-46218)
|
|
||||||
|
|
||||||
* Thu Oct 12 2023 Jacek Migacz <jmigacz@redhat.com> - 7.61.1-33.el8_9.3
|
|
||||||
- fix cookie injection with none file (CVE-2023-38546)
|
- fix cookie injection with none file (CVE-2023-38546)
|
||||||
|
- fix HTTP2 connection failure with HTTP2 framing layer (RHEL-5657)
|
||||||
* Mon Sep 25 2023 Jacek Migacz <jmigacz@redhat.com> - 7.61.1-33.el8_9.2
|
- lowercase the domain names before PSL checks (CVE-2023-46218)
|
||||||
- fix 'incompatible pointer type' reported by OpenScanHub (#2240033)
|
|
||||||
|
|
||||||
* Fri Sep 22 2023 Jacek Migacz <jmigacz@redhat.com> - 7.61.1-33.el8_9.1
|
|
||||||
- when keyboard-interactive auth fails, try password (#2240033)
|
|
||||||
|
|
||||||
* Tue Jun 27 2023 Jacek Migacz <jmigacz@redhat.com> - 7.61.1-33
|
* Tue Jun 27 2023 Jacek Migacz <jmigacz@redhat.com> - 7.61.1-33
|
||||||
- fix host name wildcard checking (CVE-2023-28321)
|
- fix host name wildcard checking (CVE-2023-28321)
|
||||||
|
Loading…
Reference in New Issue
Block a user