nixpkgs/pkgs/tools/networking/amass/default.nix

48 lines
1.3 KiB
Nix
Raw Normal View History

{ buildGoModule
2018-11-17 07:23:18 +00:00
, fetchFromGitHub
, lib
2018-11-17 07:23:18 +00:00
}:
buildGoModule rec {
pname = "amass";
2021-07-16 19:48:44 +00:00
version = "3.13.3";
2018-11-17 07:23:18 +00:00
src = fetchFromGitHub {
owner = "OWASP";
repo = "Amass";
2019-07-28 06:33:01 +00:00
rev = "v${version}";
2021-07-16 19:48:44 +00:00
sha256 = "sha256-uIqnylq99P9M8nOuqkKl7fGIVfYO6cO0DAQ4eaC2qyY=";
2018-11-17 07:23:18 +00:00
};
2021-07-16 19:48:44 +00:00
vendorSha256 = "sha256-LOnnvidUdDDhNPWM+o0Ef4NqRboi89s0DzDwuxi0nl8=";
2018-11-17 07:23:18 +00:00
outputs = [ "out" "wordlists" ];
2018-11-17 07:23:18 +00:00
2018-11-20 20:51:26 +00:00
postInstall = ''
mkdir -p $wordlists
cp -R examples/wordlists/*.txt $wordlists
2018-11-20 20:51:26 +00:00
gzip $wordlists/*.txt
'';
2021-07-16 19:48:44 +00:00
# https://github.com/OWASP/Amass/issues/640
doCheck = false;
meta = with lib; {
2018-11-17 07:23:18 +00:00
description = "In-Depth DNS Enumeration and Network Mapping";
longDescription = ''
The OWASP Amass tool suite obtains subdomain names by scraping data
sources, recursive brute forcing, crawling web archives,
permuting/altering names and reverse DNS sweeping. Additionally, Amass
uses the IP addresses obtained during resolution to discover associated
netblocks and ASNs. All the information is then used to build maps of the
target networks.
2018-11-20 20:51:26 +00:00
Amass ships with a set of wordlist (to be used with the amass -w flag)
that are found under the wordlists output.
2018-11-17 07:23:18 +00:00
'';
2021-07-16 19:48:44 +00:00
homepage = "https://owasp.org/www-project-amass/";
2018-11-17 07:23:18 +00:00
license = licenses.asl20;
2021-07-16 19:48:44 +00:00
maintainers = with maintainers; [ kalbasit fab ];
2018-11-17 07:23:18 +00:00
};
}