Merge pull request #136621 from fabaff/dalfox

dalfox: init at 2.4.9
This commit is contained in:
Fabian Affolter 2021-09-04 21:17:05 +02:00 committed by GitHub
commit 76ae975a5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "dalfox";
version = "2.4.9";
src = fetchFromGitHub {
owner = "hahwul";
repo = pname;
rev = "v${version}";
sha256 = "1g0bafg3lgsqy8mjyzvvy9l1wp1rxqwpba3dkx6xisjkpbycxql8";
};
vendorSha256 = "1mw58zbihw2fzbpqwydfrrkcwqjkjqdzp37m4dijhx1pbzkv9gzl";
meta = with lib; {
description = "Tool for analysing parameter and XSS scanning";
homepage = "https://github.com/hahwul/dalfox";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -30402,6 +30402,8 @@ with pkgs;
conglomerate = callPackage ../applications/science/biology/conglomerate { };
dalfox = callPackage ../tools/security/dalfox { };
dcm2niix = callPackage ../applications/science/biology/dcm2niix { };
deepdiff = with python3Packages; toPythonApplication deepdiff;