2019-05-12 08:34:24 +02:00
|
|
|
{ buildGoModule
|
2018-11-17 08:23:18 +01:00
|
|
|
, fetchFromGitHub
|
2020-04-13 04:50:09 +02:00
|
|
|
, lib
|
2018-11-17 08:23:18 +01:00
|
|
|
}:
|
|
|
|
|
2019-05-12 08:34:24 +02:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "amass";
|
2022-03-05 01:56:51 +01:00
|
|
|
version = "3.17.1";
|
2018-11-17 08:23:18 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OWASP";
|
|
|
|
repo = "Amass";
|
2019-07-28 08:33:01 +02:00
|
|
|
rev = "v${version}";
|
2022-03-05 01:56:51 +01:00
|
|
|
sha256 = "sha256-AFy0Ob6caU3yGC9s5Til5sYZ3A4qiEeU96OfeMlR/Q4=";
|
2018-11-17 08:23:18 +01:00
|
|
|
};
|
|
|
|
|
2022-03-05 01:56:51 +01:00
|
|
|
vendorSha256 = "sha256-6qfHoP7TOmRZLIiijRfQxyct+486TXQ18cdH8pdhwmQ=";
|
2018-11-17 08:23:18 +01:00
|
|
|
|
2019-05-12 08:34:24 +02:00
|
|
|
outputs = [ "out" "wordlists" ];
|
2018-11-17 08:23:18 +01:00
|
|
|
|
2018-11-20 21:51:26 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $wordlists
|
2020-09-20 23:44:28 +02:00
|
|
|
cp -R examples/wordlists/*.txt $wordlists
|
2018-11-20 21:51:26 +01:00
|
|
|
gzip $wordlists/*.txt
|
|
|
|
'';
|
|
|
|
|
2021-07-16 21:48:44 +02:00
|
|
|
# https://github.com/OWASP/Amass/issues/640
|
|
|
|
doCheck = false;
|
|
|
|
|
2020-04-13 04:50:09 +02:00
|
|
|
meta = with lib; {
|
2018-11-17 08:23:18 +01: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 21:51:26 +01: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 08:23:18 +01:00
|
|
|
'';
|
2021-07-16 21:48:44 +02:00
|
|
|
homepage = "https://owasp.org/www-project-amass/";
|
2018-11-17 08:23:18 +01:00
|
|
|
license = licenses.asl20;
|
2021-07-16 21:48:44 +02:00
|
|
|
maintainers = with maintainers; [ kalbasit fab ];
|
2018-11-17 08:23:18 +01:00
|
|
|
};
|
|
|
|
}
|