From owner-freebsd-current@freebsd.org Mon Nov 2 06:15:36 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 34B3EA238AD for ; Mon, 2 Nov 2015 06:15:36 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E965D1349; Mon, 2 Nov 2015 06:15:35 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.85) with esmtp (envelope-from ) id <1Zt8Ot-001Pih-BK>; Mon, 02 Nov 2015 07:15:27 +0100 Received: from p578a69f9.dip0.t-ipconnect.de ([87.138.105.249] helo=freyja.zeit4.iv.bundesimmobilien.de) by inpost2.zedat.fu-berlin.de (Exim 4.85) with esmtpsa (envelope-from ) id <1Zt8Ot-002Vp6-5G>; Mon, 02 Nov 2015 07:15:27 +0100 Date: Mon, 2 Nov 2015 07:15:22 +0100 From: "O. Hartmann" To: Eric van Gyzen Cc: Jung-uk Kim , FreeBSD-current Subject: Re: [HEADSUP] OpenSSL updated to 1.0.2d Message-ID: <20151102071522.2090b374@freyja.zeit4.iv.bundesimmobilien.de> In-Reply-To: <5634CECA.6080405@vangyzen.net> References: <5633D9C9.2060906@FreeBSD.org> <20151031112545.46aa9dca.ohartman@zedat.fu-berlin.de> <5634CECA.6080405@vangyzen.net> Organization: FU Berlin X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Originating-IP: 87.138.105.249 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Nov 2015 06:15:36 -0000 On Sat, 31 Oct 2015 09:23:06 -0500 Eric van Gyzen wrote: > On 10/31/15 5:25 AM, O. Hartmann wrote: > > Am Fri, 30 Oct 2015 16:57:45 -0400 > > Jung-uk Kim schrieb: > > > >> -----BEGIN PGP SIGNED MESSAGE----- > >> Hash: SHA256 > >> > >> OpenSSL on head has been updated to 1.0.2d. Please make sure to > >> recompile all binaries depending on libcrypto.so.7 or libssl.so.7. > > > > That is good news. > > > > Could you provide, please, some hints how one could check all installed > > ports for the usage of those specific libraries? Or could you provide a > > hint towards an existing port already providing those tools? It would be > > great for those "from the set of ordinary people" using FreeBSD. > > > > I ask for that because I recall that there were a couple of ports which > > explicitely asks for a selection of what SSL lib should be used and in my > > case, I use the base system's one. > > I expect there's a port, but I'm not aware of one. > > This should work: > > find /usr/local/*bin /usr/local/lib* -type f | \ > while read F; do \ > objdump -x $F 2>&1 | grep -Eq 'NEEDED *lib(crypto|ssl).so.7' && \ > echo $F; \ > done > > This is in /bin/sh (or bash). You could change "echo" to "pkg which" > to show the package names. > > Cheers, > > Eric Thank you very much. For a "simple headless server" the update is much more convenient than for systems with a graphical user's interface like X11, so having such a script at hand via "UPDATING" other than a simple Email would be great. Kind regards and thank you, oh