- Update from version 1.22.1 to 1.22.2 - No change to rootfile - 1 CVE fix - Changelog 1.22.2 Fix potential uninitialized pointer free in kadm5 XDR parsing [CVE-2023-36054]. Fix read overruns in SPNEGO parsing. Compatibility fix for autoconf 2.72.
Signed-off-by: Adolf Belka <[email protected]> --- lfs/krb5 | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/lfs/krb5 b/lfs/krb5 index cdf2d80d6..1c3f5e2b2 100644 --- a/lfs/krb5 +++ b/lfs/krb5 @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2024 IPFire Team <[email protected]> # +# Copyright (C) 2007-2026 IPFire Team <[email protected]> # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -26,7 +26,7 @@ include Config SUMMARY = Kerberos -VER = 1.22.1 +VER = 1.22.2 THISAPP = krb5-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -42,7 +42,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = aed6a7f511ae7085a81fa6dc553881ea478bb8bb8aa43ab13e1312ead392fb93173998bfdfc730dca4d715b2ed52da6a12f2417f95525d9ff5c4629e8ca5fedc +$(DL_FILE)_BLAKE2 = c0fee5d954fee1c10dcd16f37243fbf586b23f1136e58c21202cd38f195586592cf6d5fa1b9eba27c8b5210db4dcc72ea47a20011295980d5eda671861571a7e install : $(TARGET) @@ -78,14 +78,13 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && patch -Np2 -i $(DIR_SRC)/src/patches/krb5-1.18.3_remove_known_failed_test.patch cd $(DIR_APP) && patch -Np2 < $(DIR_SRC)/src/patches/krb5-1.12.3-FTBFS.patch cd $(DIR_APP) && ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var/lib \ - --with-system-et \ - --with-system-ss \ - --enable-dns-for-realm \ - CPPFLAGS="-I/usr/include/et" - + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + --with-system-et \ + --with-system-ss \ + --enable-dns-for-realm \ + CPPFLAGS="-I/usr/include/et" cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install -- 2.54.0
