5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, libpcap
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "naabu";
|
|
version = "2.1.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "projectdiscovery";
|
|
repo = "naabu";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-/EVlg0NhWJRowHttwYq+i/3BhO5o8w74kRLWIjSI6AQ=";
|
|
};
|
|
|
|
vendorHash = "sha256-LoYArDsCJCDSI02nFSUVemYNeF+q5xAjV2QyWjMOXIY=";
|
|
|
|
buildInputs = [
|
|
libpcap
|
|
];
|
|
|
|
modRoot = "./v2";
|
|
|
|
subPackages = [
|
|
"cmd/naabu/"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Fast SYN/CONNECT port scanner";
|
|
longDescription = ''
|
|
Naabu is a port scanning tool written in Go that allows you to enumerate
|
|
valid ports for hosts in a fast and reliable manner. It is a really simple
|
|
tool that does fast SYN/CONNECT scans on the host/list of hosts and lists
|
|
all ports that return a reply.
|
|
'';
|
|
homepage = "https://github.com/projectdiscovery/naabu";
|
|
changelog = "https://github.com/projectdiscovery/naabu/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|