mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "nuclei";
|
|
version = "3.3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "projectdiscovery";
|
|
repo = "nuclei";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-cR0eOWKr1RK2Tw3ct/3pev275NveWkcBM3EzTm3Qa1E=";
|
|
};
|
|
|
|
vendorHash = "sha256-lxqVNhA8/iMx31Bbp4rIHVrh3nUARlxY2KDcCxOtO+I=";
|
|
proxyVendor = true; # hash mismatch between Linux and Darwin
|
|
|
|
subPackages = [ "cmd/nuclei/" ];
|
|
|
|
ldflags = [
|
|
"-w"
|
|
"-s"
|
|
];
|
|
|
|
# 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";
|
|
changelog = "https://github.com/projectdiscovery/nuclei/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
fab
|
|
Misaka13514
|
|
];
|
|
mainProgram = "nuclei";
|
|
};
|
|
}
|