wfuzz: init at 2.4.2
This commit is contained in:
parent
8ae72e89bb
commit
6306baa8a2
|
@ -0,0 +1,51 @@
|
|||
{ buildPythonPackage
|
||||
, chardet
|
||||
, configparser
|
||||
, fetchFromGitHub
|
||||
, future
|
||||
, isPy27
|
||||
, lib
|
||||
, mock
|
||||
, netaddr
|
||||
, pkgs
|
||||
, pyparsing
|
||||
, pycurl
|
||||
, pytest
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "wfuzz";
|
||||
version = "2.4.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "xmendez";
|
||||
repo = pname;
|
||||
rev = "v.${version}";
|
||||
sha256 = "15dihrc7jsvpxcmb4fp254s633mkjm7ksjfkr9pqaai49qmnddyf";
|
||||
};
|
||||
|
||||
buildInputs = [ pyparsing configparser ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
chardet
|
||||
future
|
||||
pycurl
|
||||
six
|
||||
];
|
||||
|
||||
checkInputs = [ netaddr pytest ] ++ lib.optionals isPy27 [ mock ];
|
||||
|
||||
# Skip tests requiring a local web server.
|
||||
checkPhase = ''
|
||||
HOME=$TMPDIR pytest \
|
||||
tests/test_{moduleman,filterintro,reqresp,api,clparser,dotdict}.py
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Web content fuzzer, to facilitate web applications assessments";
|
||||
homepage = "https://wfuzz.readthedocs.io";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ pamplemousse ];
|
||||
};
|
||||
}
|
|
@ -25620,6 +25620,8 @@ in
|
|||
|
||||
wasmtime = callPackage ../development/interpreters/wasmtime {};
|
||||
|
||||
wfuzz = with python3Packages; toPythonApplication wfuzz;
|
||||
|
||||
bemenu = callPackage ../applications/misc/bemenu { };
|
||||
|
||||
dapper = callPackage ../development/tools/dapper { };
|
||||
|
|
|
@ -6638,6 +6638,8 @@ in {
|
|||
|
||||
webrtcvad = callPackage ../development/python-modules/webrtcvad { };
|
||||
|
||||
wfuzz = callPackage ../development/python-modules/wfuzz { };
|
||||
|
||||
wget = callPackage ../development/python-modules/wget { };
|
||||
|
||||
runway-python = callPackage ../development/python-modules/runway-python { };
|
||||
|
|
Loading…
Reference in New Issue