summaryrefslogtreecommitdiff
path: root/security/wfuzz/Makefile
diff options
context:
space:
mode:
authorleot <leot@pkgsrc.org>2021-03-06 21:05:33 +0000
committerleot <leot@pkgsrc.org>2021-03-06 21:05:33 +0000
commit5a99064bf016817b4dc2abeee1d276397dbdd332 (patch)
treed3b2fdef5a75fc75e11cd889b1356cf6cfc33a2e /security/wfuzz/Makefile
parentbe7396b6322c0bc784ca52601188b5132f9e1ee0 (diff)
downloadpkgsrc-5a99064bf016817b4dc2abeee1d276397dbdd332.tar.gz
security/wfuzz: import wfuzz-3.1.0
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. A payload in Wfuzz is a source of data. This simple concept allows any input to be injected in any field of an HTTP request, allowing to perform complex web security attacks in different web application components such as: parameters, authentication, forms, directories/files, headers, etc. 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.
Diffstat (limited to 'security/wfuzz/Makefile')
-rw-r--r--security/wfuzz/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/security/wfuzz/Makefile b/security/wfuzz/Makefile
new file mode 100644
index 00000000000..9e798505ce4
--- /dev/null
+++ b/security/wfuzz/Makefile
@@ -0,0 +1,23 @@
+# $NetBSD: Makefile,v 1.1 2021/03/06 21:05:33 leot Exp $
+
+DISTNAME= wfuzz-3.1.0
+CATEGORIES= security python
+MASTER_SITES= ${MASTER_SITE_PYPI:=w/wfuzz/}
+
+MAINTAINER= leot@NetBSD.org
+HOMEPAGE= http://wfuzz.io/
+COMMENT= Web application fuzzer
+LICENSE= gnu-gpl-v2
+
+DEPENDS+= ${PYPKGPREFIX}-chardet-[0-9]*:../../converters/py-chardet
+DEPENDS+= ${PYPKGPREFIX}-curl-[0-9]*:../../www/py-curl
+DEPENDS+= ${PYPKGPREFIX}-pyparsing>=2.4:../../devel/py-pyparsing
+DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
+
+USE_LANGUAGES= # none
+
+# Only for Python 3
+PYTHON_VERSIONS_INCOMPATIBLE= 27
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"