diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2020-10-11 19:10:11 +0800 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2020-10-11 19:10:11 +0800 |
commit | 2cea042c1cd499b0ac52e0f738a34334f14ec8ce (patch) | |
tree | 58c4f8286f85ad7109236cf8dfa94272e88bd5a5 /security | |
parent | aa3db148fc30ca93d96fe6ab7c839c46769cc45e (diff) | |
download | freebsd-ports-gnome-2cea042c1cd499b0ac52e0f738a34334f14ec8ce.tar.gz freebsd-ports-gnome-2cea042c1cd499b0ac52e0f738a34334f14ec8ce.tar.zst freebsd-ports-gnome-2cea042c1cd499b0ac52e0f738a34334f14ec8ce.zip |
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>
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/ffuf/Makefile | 21 | ||||
-rw-r--r-- | security/ffuf/distinfo | 3 | ||||
-rw-r--r-- | security/ffuf/pkg-descr | 3 |
4 files changed, 28 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 52f49f95c1df..cd00919556e2 100644 --- a/security/Makefile +++ b/security/Makefile @@ -151,6 +151,7 @@ SUBDIR += fbopenssl SUBDIR += fcheck SUBDIR += fcrackzip + SUBDIR += ffuf SUBDIR += fiked SUBDIR += find-zlib SUBDIR += fizz diff --git a/security/ffuf/Makefile b/security/ffuf/Makefile new file mode 100644 index 000000000000..5553b8116210 --- /dev/null +++ b/security/ffuf/Makefile @@ -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 <bsd.port.mk> diff --git a/security/ffuf/distinfo b/security/ffuf/distinfo new file mode 100644 index 000000000000..40eef1fa09fb --- /dev/null +++ b/security/ffuf/distinfo @@ -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 diff --git a/security/ffuf/pkg-descr b/security/ffuf/pkg-descr new file mode 100644 index 000000000000..574cbcaa2303 --- /dev/null +++ b/security/ffuf/pkg-descr @@ -0,0 +1,3 @@ +Fast web fuzzer written in Go + +WWW: https://github.com/ffuf/ffuf |