about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/jsubfinder/default.nix
blob: c989c352ea053a83fc08e2adfdc8775d6f324ce4 (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
26
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "jsubfinder";
  version = "unstable-2022-05-31";

  src = fetchFromGitHub {
    owner = "ThreatUnkown";
    repo = pname;
    rev = "e21de1ebc174bb69485f1c224e8063c77d87e4ad";
    hash = "sha256-QjRYJyk0uFGa6FCCYK9SIJhoyam4ALsQJ26DsmbNk8s=";
  };

  vendorHash = "sha256-pr4KkszyzEl+yLJousx29tr7UZDJf0arEfXBb7eumww=";

  meta = with lib; {
    description = "Tool to search for in Javascript hidden subdomains and secrets";
    mainProgram = "jsubfinder";
    homepage = "https://github.com/ThreatUnkown/jsubfinder";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}