From owner-svn-ports-all@freebsd.org Fri Jun 9 03:35:06 2017 Return-Path: Delivered-To: svn-ports-all@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 5EF0FD8A078; Fri, 9 Jun 2017 03:35:06 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (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 3ACC07C919; Fri, 9 Jun 2017 03:35:06 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v593Z5kS047275; Fri, 9 Jun 2017 03:35:05 GMT (envelope-from gavin@FreeBSD.org) Received: (from gavin@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v593Z5I3047272; Fri, 9 Jun 2017 03:35:05 GMT (envelope-from gavin@FreeBSD.org) Message-Id: <201706090335.v593Z5I3047272@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gavin set sender to gavin@FreeBSD.org using -f From: Gavin Atkinson Date: Fri, 9 Jun 2017 03:35:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442970 - in head/security/sslscan: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2017 03:35:06 -0000 Author: gavin (src,doc committer) Date: Fri Jun 9 03:35:05 2017 New Revision: 442970 URL: https://svnweb.freebsd.org/changeset/ports/442970 Log: sslscan: Update to 1.11.10. PR: 219197 Submitted by: Piotr Kubaj (with minor changes) Approved by: rene Modified: head/security/sslscan/Makefile head/security/sslscan/distinfo head/security/sslscan/files/patch-sslscan.c Modified: head/security/sslscan/Makefile ============================================================================== --- head/security/sslscan/Makefile Fri Jun 9 03:02:42 2017 (r442969) +++ head/security/sslscan/Makefile Fri Jun 9 03:35:05 2017 (r442970) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sslscan -PORTVERSION= 1.11.8 +PORTVERSION= 1.11.10 DISTVERSIONSUFFIX= -${GH_ACCOUNT} CATEGORIES= security Modified: head/security/sslscan/distinfo ============================================================================== --- head/security/sslscan/distinfo Fri Jun 9 03:02:42 2017 (r442969) +++ head/security/sslscan/distinfo Fri Jun 9 03:35:05 2017 (r442970) @@ -1,3 +1,3 @@ -TIMESTAMP = 1486214215 -SHA256 (rbsec-sslscan-1.11.8-rbsec_GH0.tar.gz) = 1449f8bb45d323b322cb070a74d8dcc57b43ca2dba0560e7a16151efc8b3d911 -SIZE (rbsec-sslscan-1.11.8-rbsec_GH0.tar.gz) = 51583 +TIMESTAMP = 1494430653 +SHA256 (rbsec-sslscan-1.11.10-rbsec_GH0.tar.gz) = fbb26fdbf2cf5b2f3f8c88782721b7875f206552cf83201981411e0af9521204 +SIZE (rbsec-sslscan-1.11.10-rbsec_GH0.tar.gz) = 52108 Modified: head/security/sslscan/files/patch-sslscan.c ============================================================================== --- head/security/sslscan/files/patch-sslscan.c Fri Jun 9 03:02:42 2017 (r442969) +++ head/security/sslscan/files/patch-sslscan.c Fri Jun 9 03:35:05 2017 (r442970) @@ -9,32 +9,3 @@ } // Disconnect SSL over socket -@@ -1155,14 +1155,14 @@ int testRenegotiation(struct sslCheckOpt - printf_verbose("Attempting SSL_do_handshake(ssl)\n"); - SSL_do_handshake(ssl); // Send renegotiation request to server //TODO :: XXX hanging here - -- if (ssl->state == SSL_ST_OK) -+ if (SSL_get_state(ssl) == SSL_ST_OK) - { - res = SSL_do_handshake(ssl); // Send renegotiation request to server - if( res != 1 ) - { - printf_error("\n\nSSL_do_handshake() call failed\n"); - } -- if (ssl->state == SSL_ST_OK) -+ if (SSL_get_state(ssl) == SSL_ST_OK) - { - /* our renegotiation is complete */ - renOut->supported = true; -@@ -1504,7 +1504,11 @@ int testCipher(struct sslCheckOptions *o - return false; - } - -+#if OPENSSL_VERSION_NUMBER >= 0x10100000L - cipherid = SSL_CIPHER_get_id(sslCipherPointer); -+#else -+ cipherid = sslCipherPointer->id; -+#endif - cipherid = cipherid & 0x00ffffff; // remove first byte which is the version (0x03 for TLSv1/SSLv3) - - // Show Cipher Status