Date: Tue, 21 May 2019 08:47:56 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r502201 - in head/dns: . subfinder Message-ID: <201905210847.x4L8luR3043847@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Tue May 21 08:47:56 2019 New Revision: 502201 URL: https://svnweb.freebsd.org/changeset/ports/502201 Log: New port: dns/subfinder: Subdomain discovery tool that discovers valid subdomains for websites Added: head/dns/subfinder/ head/dns/subfinder/Makefile (contents, props changed) head/dns/subfinder/distinfo (contents, props changed) head/dns/subfinder/pkg-descr (contents, props changed) Modified: head/dns/Makefile Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Tue May 21 08:46:41 2019 (r502200) +++ head/dns/Makefile Tue May 21 08:47:56 2019 (r502201) @@ -221,6 +221,7 @@ SUBDIR += sheerdns SUBDIR += sleuth SUBDIR += sshfp + SUBDIR += subfinder SUBDIR += tinystats SUBDIR += totd SUBDIR += udns Added: head/dns/subfinder/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/subfinder/Makefile Tue May 21 08:47:56 2019 (r502201) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= subfinder +DISTVERSION= 1.2-6 +DISTVERSIONSUFFIX= -g357c340 +CATEGORIES= dns + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Subdomain discovery tool that discovers valid subdomains for websites + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go +USE_GITHUB= yes +GH_TUPLE= subfinder:urlx:8e731c8:urlx/vendor/github.com/subfinder/urlx \ + bogdanovich:dns_resolver:a8e42bc:dns_resolver/vendor/github.com/bogdanovich/dns_resolver \ + miekg:dns:ccd41ff:dns/vendor/github.com/miekg/dns +GO_PKGNAME= github.com/${PORTNAME}/${PORTNAME} + +PLIST_FILES= bin/${PORTNAME} + +.include <bsd.port.mk> Added: head/dns/subfinder/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/subfinder/distinfo Tue May 21 08:47:56 2019 (r502201) @@ -0,0 +1,9 @@ +TIMESTAMP = 1558427367 +SHA256 (subfinder-subfinder-1.2-6-g357c340_GH0.tar.gz) = 1a28561626aba3005091287655976da0da4d42562b4cb35b275dcf8b0cf88ac1 +SIZE (subfinder-subfinder-1.2-6-g357c340_GH0.tar.gz) = 34779 +SHA256 (subfinder-urlx-8e731c8_GH0.tar.gz) = 18be61066860462179203d4b6d0c0261609611a8d43523a4e801a24c2ec5e42f +SIZE (subfinder-urlx-8e731c8_GH0.tar.gz) = 1851 +SHA256 (bogdanovich-dns_resolver-a8e42bc_GH0.tar.gz) = 6bb6328732e6c181020a98c84dad46a3d0f74634490e101e31280c257993e635 +SIZE (bogdanovich-dns_resolver-a8e42bc_GH0.tar.gz) = 2981 +SHA256 (miekg-dns-ccd41ff_GH0.tar.gz) = b43654f9689ea9ee6757ecb5da4e28f9ccf5b3dfe81630a7eeb38c39bcf1b347 +SIZE (miekg-dns-ccd41ff_GH0.tar.gz) = 3887272 Added: head/dns/subfinder/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/subfinder/pkg-descr Tue May 21 08:47:56 2019 (r502201) @@ -0,0 +1,11 @@ +SubFinder is a subdomain discovery tool that discovers valid subdomains for +websites by using passive online sources. It has a simple modular architecture +and has been aimed as a successor to sublist3r project. SubFinder uses Passive +Sources, Search Engines, Pastebins, Internet Archives, etc to find subdomains +and then it uses a permutation module inspired by altdns to generate +permutations and resolve them quickly using a powerful bruteforcing engine. It +can also perform plain bruteforce if needed. The tool is highly customizable, +and the code is built with a modular approach in mind making it easy to add +functionalities and remove errors. + +WWW: https://github.com/subfinder/subfinder
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905210847.x4L8luR3043847>