Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Sep 2018 18:54:04 +0000 (UTC)
From:      Rene Ladan <rene@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r480623 - in head/security: . onionscan
Message-ID:  <201809241854.w8OIs4PY066178@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809241854.w8OIs4PY066178>