New package: wfuzz-2.3.4
This commit is contained in:
parent
9c4041154f
commit
e4d76b7ede
|
@ -0,0 +1,11 @@
|
||||||
|
--- setup.py.orig
|
||||||
|
+++ setup.py
|
||||||
|
@@ -24,7 +24,7 @@
|
||||||
|
'pyparsing',
|
||||||
|
'future',
|
||||||
|
'six',
|
||||||
|
- 'configparser',
|
||||||
|
+ 'configparser;python_version<"3.5"',
|
||||||
|
'chardet',
|
||||||
|
]
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
--- src/wfuzz/__init__.py.orig
|
||||||
|
+++ src/wfuzz/__init__.py
|
||||||
|
@@ -20,8 +20,8 @@
|
||||||
|
try:
|
||||||
|
import pycurl
|
||||||
|
|
||||||
|
- if "openssl".lower() not in pycurl.version.lower():
|
||||||
|
- print("\nWarning: Pycurl is not compiled against Openssl. Wfuzz might not work correctly when fuzzing SSL sites. Check Wfuzz's documentation for more information.\n")
|
||||||
|
+ if "ssl".lower() not in pycurl.version.lower():
|
||||||
|
+ print("\nWarning: Pycurl is not compiled against Open- or LibreSSL. Wfuzz might not work correctly when fuzzing SSL sites. Check Wfuzz's documentation for more information.\n")
|
||||||
|
|
||||||
|
if not hasattr(pycurl, "PATH_AS_IS"):
|
||||||
|
print("\nWarning: Pycurl and/or libcurl version is old. PATH_AS_IS option is missing. Wfuzz might not correctly fuzz URLS with '..'.\n")
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Template file for 'wfuzz'
|
||||||
|
pkgname=wfuzz
|
||||||
|
version=2.3.4
|
||||||
|
revision=1
|
||||||
|
noarch=yes
|
||||||
|
build_style=python3-module
|
||||||
|
pycompile_module="wfuzz"
|
||||||
|
hostmakedepends="python3-setuptools"
|
||||||
|
depends="python3-chardet python3-curl python3-future python3-lxml python3-parse
|
||||||
|
python3-parsing python3-six"
|
||||||
|
short_desc="Web fuzzer"
|
||||||
|
maintainer="Andrew Benson <abenson+void@gmail.com>"
|
||||||
|
license="GPL-2.0-only"
|
||||||
|
homepage="http://wfuzz.org"
|
||||||
|
distfiles="https://github.com/xmendez/wfuzz/archive/v${version}.tar.gz"
|
||||||
|
checksum=87ff36d866cb173389f90cf026136758d3af73079a6199961de12ed86568be51
|
Loading…
Reference in New Issue