rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / amass / default.nix
blobcbd6513905055e201836d1b955d9dde992064f5d
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "amass";
8   version = "4.2.0";
10   src = fetchFromGitHub {
11     owner = "OWASP";
12     repo = "Amass";
13     rev = "refs/tags/v${version}";
14     hash = "sha256-lhvU2fUnjQ+D+EZDRircNg/np4Ynk+HzOBgxT1L8BaQ=";
15   };
17   vendorHash = "sha256-PdFIWK4yBh8Bb9mzYdU2h7pDPK8FZMhu8meTd9snP48=";
19   outputs = [
20     "out"
21     "wordlists"
22   ];
24   postInstall = ''
25     mkdir -p $wordlists
26     cp -R examples/wordlists/*.txt $wordlists
27     gzip $wordlists/*.txt
28   '';
30   # https://github.com/OWASP/Amass/issues/640
31   doCheck = false;
33   meta = with lib; {
34     description = "In-Depth DNS Enumeration and Network Mapping";
35     longDescription = ''
36       The OWASP Amass tool suite obtains subdomain names by scraping data
37       sources, recursive brute forcing, crawling web archives,
38       permuting/altering names and reverse DNS sweeping. Additionally, Amass
39       uses the IP addresses obtained during resolution to discover associated
40       netblocks and ASNs. All the information is then used to build maps of the
41       target networks.
43       Amass ships with a set of wordlist (to be used with the amass -w flag)
44       that are found under the wordlists output.
45       '';
46     homepage = "https://owasp.org/www-project-amass/";
47     changelog = "https://github.com/OWASP/Amass/releases/tag/v${version}";
48     license = licenses.asl20;
49     maintainers = with maintainers; [ kalbasit fab ];
50     mainProgram = "amass";
51   };