2021-03-16 21:45:29 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
2020-12-27 11:27:21 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "nuclei";
|
2021-03-24 17:30:55 +00:00
|
|
|
version = "2.3.2";
|
2020-12-27 11:27:21 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "projectdiscovery";
|
2021-03-16 21:45:29 +00:00
|
|
|
repo = pname;
|
2020-12-27 11:27:21 +00:00
|
|
|
rev = "v${version}";
|
2021-03-24 17:30:55 +00:00
|
|
|
sha256 = "sha256-QF9w3ZrW+Mbl6EOC1n2848+q71AhxXTf0j//Us9L1r8=";
|
2020-12-27 11:27:21 +00:00
|
|
|
};
|
|
|
|
|
2021-03-24 17:30:55 +00:00
|
|
|
vendorSha256 = "sha256-qmuua7HXnwuy24CSqHKALqNDmXBvSIXYTVu3kaGVoeU=";
|
2020-12-27 11:27:21 +00:00
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
mv v2/* .
|
|
|
|
'';
|
|
|
|
|
2021-03-16 21:45:29 +00:00
|
|
|
# Test files are not part of the release tarball
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-12-27 11:27:21 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|