Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Aug 2018 06:33:44 +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: r476968 - in head/www: . py-wfuzz
Message-ID:  <201808120633.w7C6XiVq060131@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sun Aug 12 06:33:43 2018
New Revision: 476968
URL: https://svnweb.freebsd.org/changeset/ports/476968

Log:
  New port: www/py-wfuzz: Web application fuzzer allowing to find vulnerabilities in them

Added:
  head/www/py-wfuzz/
  head/www/py-wfuzz/Makefile   (contents, props changed)
  head/www/py-wfuzz/distinfo   (contents, props changed)
  head/www/py-wfuzz/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Sun Aug 12 06:29:51 2018	(r476967)
+++ head/www/Makefile	Sun Aug 12 06:33:43 2018	(r476968)
@@ -1894,6 +1894,7 @@
     SUBDIR += py-websocket-client
     SUBDIR += py-webunit
     SUBDIR += py-werkzeug
+    SUBDIR += py-wfuzz
     SUBDIR += py-wikipedia
     SUBDIR += py-wikitools
     SUBDIR += py-ws4py

Added: head/www/py-wfuzz/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-wfuzz/Makefile	Sun Aug 12 06:33:43 2018	(r476968)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	wfuzz
+DISTVERSION=	2.2.11
+CATEGORIES=	www security python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Web application fuzzer allowing to find vulnerabilities in them
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pycurl>=7.43.0.1:ftp/py-pycurl@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pyparsing>=2.2.0:devel/py-pyparsing@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils concurrent autoplist
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/www/py-wfuzz/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-wfuzz/distinfo	Sun Aug 12 06:33:43 2018	(r476968)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1534053651
+SHA256 (wfuzz-2.2.11.tar.gz) = 8a2828aceab2ac7c400902c5741eded8eeb2eb67a29bb09d57782bc63572857d
+SIZE (wfuzz-2.2.11.tar.gz) = 81482

Added: head/www/py-wfuzz/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-wfuzz/pkg-descr	Sun Aug 12 06:33:43 2018	(r476968)
@@ -0,0 +1,23 @@
+Wfuzz has been created to facilitate the task in web applications assessments
+and it is based on a simple concept: it replaces any reference to the FUZZ
+keyword by the value of a given payload.
+
+Wfuzz is more than a web content scanner:
+* Wfuzz could help you to secure your web applications by finding and exploiting
+  web application vulnerabilities. Wfuzz's web application vulnerability scanner
+  is supported by plugins.
+
+* Wfuzz is a completely modular framework and makes it easy for even the newest
+  of Python developers to contribute. Building plugins is simple and takes
+  little more than a few minutes.
+
+* Wfuzz exposes a simple language interface to the previous HTTP
+  requests/responses performed using Wfuzz or other tools, such as Burp. This
+  allows you to perform manual and semi-automatic tests with full context and
+  understanding of your actions, without relying on a web application scanner
+  underlying implementation.
+
+It was created to facilitate the task in web applications assessment. It is a
+tool by pentesters for pentesters.
+
+WWW: http://wfuzz.readthedocs.io/en/latest



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