Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
libpostalWithData,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "amass";
|
|
version = "5.0.1";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libpostalWithData ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OWASP";
|
|
repo = "Amass";
|
|
tag = "v${version}";
|
|
hash = "sha256-uAuBWzEwppnmYacfPI7MZUW+7PdSs3EqYm1WQI4fthQ=";
|
|
};
|
|
|
|
vendorHash = "sha256-/AowoZfOk2tib996oC2hsMnzbe/CVbCBesTWXp6xE6Y=";
|
|
|
|
# https://github.com/OWASP/Amass/issues/640
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
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.
|
|
'';
|
|
homepage = "https://owasp.org/www-project-amass/";
|
|
changelog = "https://github.com/OWASP/Amass/releases/tag/v${version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [
|
|
kalbasit
|
|
fab
|
|
];
|
|
mainProgram = "amass";
|
|
};
|
|
}
|