On 2021/03/25 08:56, Ricardo Mestre wrote: > Hi, > > As announced on oss-security list ircII is subject to a remote DoS vuln, the > latest version below solves this.
needs a bit more: ----- Forwarded message from Stuart Henderson <s...@spacehopper.org> ----- From: Stuart Henderson <s...@spacehopper.org> Date: Wed, 24 Mar 2021 11:49:01 +0000 To: Brad <b...@comstyle.com> Subject: ircII update ok? includes a ctcp crash fix. Changes in ircII 20210314: o fix two memory leaks, one from michael ortmann <ortm...@posteo.de>. o removed support for non-host getaddrinfo(), getnameinfo(), inet_pton(), inet_ntop(), and snprintf(). all are part of C99. o fixes for various issues by michael ortmann <ortm...@posteo.de>. Changes in ircII 20210225: o new --with-sanitizer=<asan|ubsan|lsan> configure support o many fixes for fuzzer and sanitizer found issues o the $IRCSERVERS variable no longer triggers some library asserts o avoid displaying negative hours/minutes o fix a potential messages goes to wrong window issue in numerics Index: Makefile =================================================================== RCS file: /cvs/ports/net/ircII/Makefile,v retrieving revision 1.54 diff -u -p -r1.54 Makefile --- Makefile 12 Jul 2019 20:48:29 -0000 1.54 +++ Makefile 24 Mar 2021 11:48:11 -0000 @@ -2,12 +2,12 @@ COMMENT= Internet Relay Chat client -VERSION= 20190117 +VERSION= 20210314 DISTNAME= ircii-${VERSION} PKGNAME= ircII-${VERSION} CATEGORIES= net -MASTER_SITES= http://ircii.warped.com/ \ - http://ircii.warped.com/old/ \ +MASTER_SITES= https://ircii.warped.com/ \ + https://ircii.warped.com/old/ \ ftp://ircii.warped.com/pub/ircII/ \ https://distfiles.macports.org/ircii/ EXTRACT_SUFX= .tar.bz2 Index: distinfo =================================================================== RCS file: /cvs/ports/net/ircII/distinfo,v retrieving revision 1.22 diff -u -p -r1.22 distinfo --- distinfo 24 Feb 2019 12:41:47 -0000 1.22 +++ distinfo 24 Mar 2021 11:48:11 -0000 @@ -1,2 +1,2 @@ -SHA256 (ircii-20190117.tar.bz2) = EDFvCjcj5M49Z/1affEOa88w3QdQ+5bVQ3yssWsOlhc= -SIZE (ircii-20190117.tar.bz2) = 606327 +SHA256 (ircii-20210314.tar.bz2) = hm8rhH2u09cIWfII98sPILWMCTOyFZ9/+SpoxRjTk6k= +SIZE (ircii-20210314.tar.bz2) = 590626 Index: patches/patch-Makefile_in =================================================================== RCS file: /cvs/ports/net/ircII/patches/patch-Makefile_in,v retrieving revision 1.4 diff -u -p -r1.4 patch-Makefile_in --- patches/patch-Makefile_in 24 Feb 2019 12:41:47 -0000 1.4 +++ patches/patch-Makefile_in 24 Mar 2021 11:48:11 -0000 @@ -1,4 +1,5 @@ $OpenBSD: patch-Makefile_in,v 1.4 2019/02/24 12:41:47 kn Exp $ + Index: Makefile.in --- Makefile.in.orig +++ Makefile.in Index: patches/patch-configure =================================================================== RCS file: /cvs/ports/net/ircII/patches/patch-configure,v retrieving revision 1.5 diff -u -p -r1.5 patch-configure --- patches/patch-configure 24 Feb 2019 12:41:47 -0000 1.5 +++ patches/patch-configure 24 Mar 2021 11:48:11 -0000 @@ -1,8 +1,9 @@ $OpenBSD: patch-configure,v 1.5 2019/02/24 12:41:47 kn Exp $ + Index: configure --- configure.orig +++ configure -@@ -1745,6 +1745,10 @@ else +@@ -1735,6 +1735,10 @@ else #undef $2 Index: patches/patch-source_log_c =================================================================== RCS file: /cvs/ports/net/ircII/patches/patch-source_log_c,v retrieving revision 1.5 diff -u -p -r1.5 patch-source_log_c --- patches/patch-source_log_c 2 Dec 2015 21:52:16 -0000 1.5 +++ patches/patch-source_log_c 24 Mar 2021 11:48:11 -0000 @@ -1,4 +1,5 @@ $OpenBSD: patch-source_log_c,v 1.5 2015/12/02 21:52:16 naddy Exp $ + --- source/log.c.orig Fri Nov 20 10:23:54 2015 +++ source/log.c Wed Dec 2 17:40:09 2015 @@ -155,12 +155,19 @@ set_log_file(u_char *filename) Index: pkg/PLIST =================================================================== RCS file: /cvs/ports/net/ircII/pkg/PLIST,v retrieving revision 1.28 diff -u -p -r1.28 PLIST --- pkg/PLIST 24 Feb 2019 12:41:47 -0000 1.28 +++ pkg/PLIST 24 Mar 2021 11:48:11 -0000 @@ -66,6 +66,7 @@ share/irc/help/bind/quit_irc share/irc/help/bind/quote_character share/irc/help/bind/refresh_inputline share/irc/help/bind/refresh_screen +share/irc/help/bind/refresh_window_lastlog share/irc/help/bind/scroll_backward share/irc/help/bind/scroll_end share/irc/help/bind/scroll_forward ----- End forwarded message -----