From owner-svn-ports-head@freebsd.org Mon Sep 24 18:54:06 2018 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 39D9310B49F7; Mon, 24 Sep 2018 18:54:06 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D35878E386; Mon, 24 Sep 2018 18:54:05 +0000 (UTC) (envelope-from rene@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 C89101D565; Mon, 24 Sep 2018 18:54:05 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8OIs5u0066182; Mon, 24 Sep 2018 18:54:05 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8OIs4PY066178; Mon, 24 Sep 2018 18:54:04 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201809241854.w8OIs4PY066178@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Mon, 24 Sep 2018 18:54:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480623 - in head/security: . onionscan X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in head/security: . onionscan X-SVN-Commit-Revision: 480623 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 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, 24 Sep 2018 18:54:06 -0000 Author: rene Date: Mon Sep 24 18:54:04 2018 New Revision: 480623 URL: https://svnweb.freebsd.org/changeset/ports/480623 Log: OnionScan is a free and open source tool for investigating Onion Services on the Tor network. It has two primary goals: * Help to find and to fix operational privacy/security issues; * Support researchers and investigators to monitor .onion sites. WWW: https://onionscan.org/ PR: 231508 Submitted by: egypcio@googlemail.com Added: head/security/onionscan/ head/security/onionscan/Makefile (contents, props changed) head/security/onionscan/distinfo (contents, props changed) head/security/onionscan/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Mon Sep 24 18:39:25 2018 (r480622) +++ head/security/Makefile Mon Sep 24 18:54:04 2018 (r480623) @@ -449,6 +449,7 @@ SUBDIR += ocaml-ssl SUBDIR += oidentd SUBDIR += oinkmaster + SUBDIR += onionscan SUBDIR += op SUBDIR += openbsm SUBDIR += openca-tools-forked Added: head/security/onionscan/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/onionscan/Makefile Mon Sep 24 18:54:04 2018 (r480623) @@ -0,0 +1,40 @@ +# $FreeBSD$ + +PORTNAME= onionscan +DISTVERSIONPREFIX= OnionScan- +DISTVERSION= 0.2 +CATEGORIES= security net + +MAINTAINER= egypcio@googlemail.com +COMMENT= Free and open source tool for investigating Onion Services + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= go:lang/go + +USES= go +USE_GITHUB= yes + +GH_ACCOUNT= s-rah +GH_TUPLE= HouzuoGuo:tiedot:3.4:tiedot/github.com/HouzuoGuo/tiedot \ + rwcarlsen:goexif:8d986c0:goexif/github.com/rwcarlsen/goexif \ + golang:crypto:0e37d00:crypto/golang.org/x/crypto \ + golang:net:26e67e7:net/golang.org/x/net \ + golang:sys:1561086:sys/golang.org/x/sys + +PLIST_FILES= bin/onionscan + +do-build: + ${MKDIR} ${WRKSRC}/github.com/${GH_ACCOUNT} + ${RLN} ${WRKSRC} ${WRKSRC}/github.com/${GH_ACCOUNT}/${PORTNAME} + ${RLN} ${WRKSRC} ${WRKSRC}/src + cd ${WRKSRC} && \ + ${SETENV} ${MAKE_ENV} ${GO_ENV} GOPATH=${WRKSRC} \ + ${GO_CMD} build ${GO_BUILDFLAGS} -o bin/${PORTNAME} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} \ + ${STAGEDIR}/${LOCALBASE}/bin + +.include Added: head/security/onionscan/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/onionscan/distinfo Mon Sep 24 18:54:04 2018 (r480623) @@ -0,0 +1,13 @@ +TIMESTAMP = 1537440910 +SHA256 (s-rah-onionscan-OnionScan-0.2_GH0.tar.gz) = d1e5fe51d26121f3afee6f11c54c08d43ed0d5686cb8b542dc72dd5662dbe988 +SIZE (s-rah-onionscan-OnionScan-0.2_GH0.tar.gz) = 658286 +SHA256 (HouzuoGuo-tiedot-3.4_GH0.tar.gz) = 696464b84599a686066ea89996a5a0e878cf2e2f022ea33178338e90906dabfc +SIZE (HouzuoGuo-tiedot-3.4_GH0.tar.gz) = 608687 +SHA256 (rwcarlsen-goexif-8d986c0_GH0.tar.gz) = 66c62f7c6db4592d4c1bbec7115204c1183cde7df4dc50814b04c78bc7260a57 +SIZE (rwcarlsen-goexif-8d986c0_GH0.tar.gz) = 938951 +SHA256 (golang-crypto-0e37d00_GH0.tar.gz) = 05e1f307f06b14787c1abe8d463a164521b70c831992ff82ae552541d2c421c6 +SIZE (golang-crypto-0e37d00_GH0.tar.gz) = 1638254 +SHA256 (golang-net-26e67e7_GH0.tar.gz) = 98513e53dac73819278595dfe277a01201978a937a24f4edd94c128bb443f7c5 +SIZE (golang-net-26e67e7_GH0.tar.gz) = 965343 +SHA256 (golang-sys-1561086_GH0.tar.gz) = 45fe1f41709a752e36bb73fded99081ad19ef840c2ea29cfe0bb9718eaa49929 +SIZE (golang-sys-1561086_GH0.tar.gz) = 1076893 Added: head/security/onionscan/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/onionscan/pkg-descr Mon Sep 24 18:54:04 2018 (r480623) @@ -0,0 +1,9 @@ +OnionScan is a free and open source tool for investigating Onion Services +on the Tor network. + +It has two primary goals: + + * Help to find and to fix operational privacy/security issues; + * Support researchers and investigators to monitor .onion sites. + +WWW: https://onionscan.org/