From owner-svn-ports-all@freebsd.org  Sun Aug 12 06:33:45 2018
Return-Path: <owner-svn-ports-all@freebsd.org>
Delivered-To: svn-ports-all@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4DAE310662D8;
 Sun, 12 Aug 2018 06:33:45 +0000 (UTC)
 (envelope-from yuri@FreeBSD.org)
Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org
 [IPv6:2610:1c1:1:606c::19:3])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mxrelay.nyi.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id E6F9E7B2DD;
 Sun, 12 Aug 2018 06:33:44 +0000 (UTC)
 (envelope-from yuri@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 C29CD22749;
 Sun, 12 Aug 2018 06:33:44 +0000 (UTC)
 (envelope-from yuri@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7C6XicR060135;
 Sun, 12 Aug 2018 06:33:44 GMT (envelope-from yuri@FreeBSD.org)
Received: (from yuri@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7C6XiVq060131;
 Sun, 12 Aug 2018 06:33:44 GMT (envelope-from yuri@FreeBSD.org)
Message-Id: <201808120633.w7C6XiVq060131@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: yuri set sender to
 yuri@FreeBSD.org using -f
From: Yuri Victorovich <yuri@FreeBSD.org>
Date: Sun, 12 Aug 2018 06:33:44 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r476968 - in head/www: . py-wfuzz
X-SVN-Group: ports-head
X-SVN-Commit-Author: yuri
X-SVN-Commit-Paths: in head/www: . py-wfuzz
X-SVN-Commit-Revision: 476968
X-SVN-Commit-Repository: ports
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-all@freebsd.org
X-Mailman-Version: 2.1.27
Precedence: list
List-Id: SVN commit messages for the ports tree <svn-ports-all.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-ports-all>,
 <mailto:svn-ports-all-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-ports-all/>
List-Post: <mailto:svn-ports-all@freebsd.org>
List-Help: <mailto:svn-ports-all-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-ports-all>,
 <mailto:svn-ports-all-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 12 Aug 2018 06:33:45 -0000

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