about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/dontgo403/default.nix
blob: d1595d9de2b755f649a9be656aa073158fb58589 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 ];
  };
}