From owner-svn-ports-head@freebsd.org Mon Feb 25 14:39:03 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 182B4150C342; Mon, 25 Feb 2019 14:39:03 +0000 (UTC) (envelope-from egypcio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B26DB8F8D5; Mon, 25 Feb 2019 14:39:02 +0000 (UTC) (envelope-from egypcio@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9B4BB1E4BD; Mon, 25 Feb 2019 14:39:02 +0000 (UTC) (envelope-from egypcio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1PEd2gH095732; Mon, 25 Feb 2019 14:39:02 GMT (envelope-from egypcio@FreeBSD.org) Received: (from egypcio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1PEd1WI095726; Mon, 25 Feb 2019 14:39:01 GMT (envelope-from egypcio@FreeBSD.org) Message-Id: <201902251439.x1PEd1WI095726@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: egypcio set sender to egypcio@FreeBSD.org using -f From: =?UTF-8?Q?Vin=c3=adcius_Zavam?= Date: Mon, 25 Feb 2019 14:39:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493869 - in head/security: . ssllabs-scan X-SVN-Group: ports-head X-SVN-Commit-Author: egypcio X-SVN-Commit-Paths: in head/security: . ssllabs-scan X-SVN-Commit-Revision: 493869 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B26DB8F8D5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2019 14:39:03 -0000 Author: egypcio Date: Mon Feb 25 14:39:01 2019 New Revision: 493869 URL: https://svnweb.freebsd.org/changeset/ports/493869 Log: [NEW PORT] security/ssllabs-scan: Command-line tool to use the SSL Labs API A command-line reference-implementation client for SSL Labs API, designed for automated and/or bulk testing. SSL Labs API expose the complete SSL/TLS server testing functionality in a programmatic fashion, allowing for scheduled and bulk assessment. They are making their API available to encourage site operators to regularly test servers configurations. WWW: https://www.ssllabs.com/projects/ssllabs-apis/ Approved by: rene (mentor) Differential Revision: https://reviews.freebsd.org/D19120 Added: head/security/ssllabs-scan/ head/security/ssllabs-scan/Makefile (contents, props changed) head/security/ssllabs-scan/distinfo (contents, props changed) head/security/ssllabs-scan/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Mon Feb 25 14:33:56 2019 (r493868) +++ head/security/Makefile Mon Feb 25 14:39:01 2019 (r493869) @@ -1276,6 +1276,7 @@ SUBDIR += sshguard SUBDIR += sshpass SUBDIR += ssl-admin + SUBDIR += ssllabs-scan SUBDIR += sslscan SUBDIR += sslsniffer SUBDIR += sslsplit Added: head/security/ssllabs-scan/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/ssllabs-scan/Makefile Mon Feb 25 14:39:01 2019 (r493869) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= ssllabs-scan +DISTVERSIONPREFIX= v +DISTVERSION= 1.5.0 +CATEGORIES= security net ipv6 + +MAINTAINER= egypcio@FreeBSD.org +COMMENT= Command-line tool to use the SSL Labs API + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ca_root_nss>=0:security/ca_root_nss + +USES= go +USE_GITHUB= yes + +GH_ACCOUNT= ssllabs + +PLIST_FILES= bin/${PORTNAME} + +do-build: + @(cd ${GO_WRKSRC} && \ + ${SETENV} ${MAKE_ENV} ${GO_ENV} ${GO_CMD} build ${GO_BUILDFLAGS} -o bin/${PORTNAME}) + +do-install: + ${INSTALL_PROGRAM} ${GO_WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + +.include Added: head/security/ssllabs-scan/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/ssllabs-scan/distinfo Mon Feb 25 14:39:01 2019 (r493869) @@ -0,0 +1,3 @@ +TIMESTAMP = 1550084742 +SHA256 (ssllabs-ssllabs-scan-v1.5.0_GH0.tar.gz) = 51c52e958d5da739910e9271a3abf4902892b91acb840ea74f5c052a71e3a008 +SIZE (ssllabs-ssllabs-scan-v1.5.0_GH0.tar.gz) = 36265 Added: head/security/ssllabs-scan/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/ssllabs-scan/pkg-descr Mon Feb 25 14:39:01 2019 (r493869) @@ -0,0 +1,9 @@ +A command-line reference-implementation client for SSL Labs API, designed +for automated and/or bulk testing. + +SSL Labs API expose the complete SSL/TLS server testing functionality in +a programmatic fashion, allowing for scheduled and bulk assessment. They are +making their API available to encourage site operators to regularly test +servers configurations. + +WWW: https://www.ssllabs.com/projects/ssllabs-apis/