nixpkgs/pkgs/tools/networking/amass/default.nix
zowoq 8660728070 Revert "amass: enable on darwin"
This reverts commit 692b890004.

Not needed now that Security is propagated via go 0bba7474b3
2020-04-13 13:08:02 +10:00

45 lines
1.3 KiB
Nix

{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "amass";
version = "3.5.4";
src = fetchFromGitHub {
owner = "OWASP";
repo = "Amass";
rev = "v${version}";
sha256 = "0sxcyrlgqajmlsicr4j2b8hq2fzw8ai1xsq176bz0f33q9m9wvhf";
};
modSha256 = "1yjvwkm2zaf017lai5xl088x1z1ifwsbw56dagyf8z9jk9lhkcj7";
outputs = [ "out" "wordlists" ];
postInstall = ''
mkdir -p $wordlists
cp -R $src/examples/wordlists/*.txt $wordlists
gzip $wordlists/*.txt
'';
meta = with lib; {
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.
Amass ships with a set of wordlist (to be used with the amass -w flag)
that are found under the wordlists output.
'';
homepage = "https://www.owasp.org/index.php/OWASP_Amass_Project";
license = licenses.asl20;
maintainers = with maintainers; [ kalbasit ];
};
}