3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #113527 from fabaff/wafw00f

wafw00f: init at 2.1.0
This commit is contained in:
Sandro 2021-02-18 12:24:27 +01:00 committed by GitHub
commit 6c004c3c82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ lib
, buildPythonApplication
, fetchFromGitHub
, pluginbase
, requests
}:
buildPythonApplication rec {
pname = "wafw00f";
version = "2.1.0";
src = fetchFromGitHub {
owner = "EnableSecurity";
repo = pname;
rev = "v${version}";
sha256 = "0526kz6ypww9nxc2vddkhpn1gqvn25mzj3wmi91wwxwxjjb6w4qj";
};
propagatedBuildInputs = [
requests
pluginbase
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "wafw00f" ];
meta = with lib; {
description = "Tool to identify and fingerprint Web Application Firewalls (WAF)";
homepage = "https://github.com/EnableSecurity/wafw00f";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -25706,6 +25706,8 @@ in
wad = python3Packages.callPackage ../tools/security/wad { };
wafw00f = python3Packages.callPackage ../tools/security/wafw00f { };
waon = callPackage ../applications/audio/waon { };
w3m = callPackage ../applications/networking/browsers/w3m { };