41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "nuclei";
|
|
version = "2.6.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "projectdiscovery";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-4jByNyO0EvJ2ppdg21+7YfeB9arjBZALrOm5MJlkZsg=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-717+jJiyqmctR9Yb/XnnKd1N+31K2+xO1XClGMKlL+k=";
|
|
|
|
modRoot = "./v2";
|
|
subPackages = [
|
|
"cmd/nuclei/"
|
|
];
|
|
|
|
# Test files are not part of the release tarball
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Tool for configurable targeted scanning";
|
|
longDescription = ''
|
|
Nuclei is used to send requests across targets based on a template
|
|
leading to zero false positives and providing effective scanning
|
|
for known paths. Main use cases for nuclei are during initial
|
|
reconnaissance phase to quickly check for low hanging fruits or
|
|
CVEs across targets that are known and easily detectable.
|
|
'';
|
|
homepage = "https://github.com/projectdiscovery/nuclei";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|