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
This commit is contained in:
parent
364fe01a87
commit
e92a3d4f01
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=480623
4 changed files with 63 additions and 0 deletions
|
@ -449,6 +449,7 @@
|
|||
SUBDIR += ocaml-ssl
|
||||
SUBDIR += oidentd
|
||||
SUBDIR += oinkmaster
|
||||
SUBDIR += onionscan
|
||||
SUBDIR += op
|
||||
SUBDIR += openbsm
|
||||
SUBDIR += openca-tools-forked
|
||||
|
|
40
security/onionscan/Makefile
Normal file
40
security/onionscan/Makefile
Normal file
|
@ -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>
|
13
security/onionscan/distinfo
Normal file
13
security/onionscan/distinfo
Normal file
|
@ -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
|
9
security/onionscan/pkg-descr
Normal file
9
security/onionscan/pkg-descr
Normal file
|
@ -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/
|
Loading…
Reference in a new issue