Merge pull request #157255 from fabaff/dontgo403
dontgo403: init at 0.3
This commit is contained in:
commit
bc303262ef
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/security/dontgo403/default.nix
Normal file
25
pkgs/tools/security/dontgo403/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "dontgo403";
|
||||
version = "0.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "devploit";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-QHkmnhOLdyci3PAhf/JIiYlCta8DJ3cZb1S6Sim0qGQ=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-jF+CSmLHMdlFpttYf3pK84wdfFAHSVPAK8S5zunUzB0=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tool to bypass 40X response codes";
|
||||
homepage = "https://github.com/devploit/dontgo403";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -1729,6 +1729,8 @@ with pkgs;
|
|||
|
||||
dkimpy = with python3Packages; toPythonApplication dkimpy;
|
||||
|
||||
dontgo403 = callPackage ../tools/security/dontgo403 { };
|
||||
|
||||
dpt-rp1-py = callPackage ../tools/misc/dpt-rp1-py { };
|
||||
|
||||
dot-http = callPackage ../development/tools/dot-http {
|
||||
|
|
Loading…
Reference in a new issue