From owner-svn-ports-head@freebsd.org Sun Oct 11 11:10:13 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 079323F0359; Sun, 11 Oct 2020 11:10:13 +0000 (UTC) (envelope-from pi@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4C8Jxc6NbVz43ss; Sun, 11 Oct 2020 11:10:12 +0000 (UTC) (envelope-from pi@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 BE9E31A947; Sun, 11 Oct 2020 11:10:12 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09BBACfl094198; Sun, 11 Oct 2020 11:10:12 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09BBAC9u094195; Sun, 11 Oct 2020 11:10:12 GMT (envelope-from pi@FreeBSD.org) Message-Id: <202010111110.09BBAC9u094195@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 11 Oct 2020 11:10:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r552051 - in head/security: . ffuf X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/security: . ffuf X-SVN-Commit-Revision: 552051 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.33 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: Sun, 11 Oct 2020 11:10:13 -0000 Author: pi Date: Sun Oct 11 11:10:11 2020 New Revision: 552051 URL: https://svnweb.freebsd.org/changeset/ports/552051 Log: New port: security/ffuf Fast web fuzzer written in Go WWW: https://github.com/ffuf/ffuf PR: 250231 Submitted by: Gabriel Dutra <0xdutra@gmail.com> Added: head/security/ffuf/ head/security/ffuf/Makefile (contents, props changed) head/security/ffuf/distinfo (contents, props changed) head/security/ffuf/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Oct 11 10:58:15 2020 (r552050) +++ head/security/Makefile Sun Oct 11 11:10:11 2020 (r552051) @@ -151,6 +151,7 @@ SUBDIR += fbopenssl SUBDIR += fcheck SUBDIR += fcrackzip + SUBDIR += ffuf SUBDIR += fiked SUBDIR += find-zlib SUBDIR += fizz Added: head/security/ffuf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/ffuf/Makefile Sun Oct 11 11:10:11 2020 (r552051) @@ -0,0 +1,21 @@ +# Created by: Gabriel M. Dutra <0xdutra@gmail.com> +# $FreeBSD$ + +PORTNAME= ffuf +DISTVERSIONPREFIX=v +DISTVERSION= 1.1.0 +CATEGORIES= security www + +MAINTAINER= 0xdutra@gmail.com +COMMENT= Fast web fuzzer written in Go + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go:modules + +USE_GITHUB= yes + +PLIST_FILES= bin/${PORTNAME} + +.include Added: head/security/ffuf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/ffuf/distinfo Sun Oct 11 11:10:11 2020 (r552051) @@ -0,0 +1,3 @@ +TIMESTAMP = 1602273363 +SHA256 (ffuf-ffuf-v1.1.0_GH0.tar.gz) = 468963c6bec5390222802ec0b04c11187bb159f369edc2ebba1d228b8faf4f35 +SIZE (ffuf-ffuf-v1.1.0_GH0.tar.gz) = 31820 Added: head/security/ffuf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/ffuf/pkg-descr Sun Oct 11 11:10:11 2020 (r552051) @@ -0,0 +1,3 @@ +Fast web fuzzer written in Go + +WWW: https://github.com/ffuf/ffuf