nuclei 3.0.2 -> 3.0.3 https://github.com/projectdiscovery/nuclei/releases attrpath: nuclei Checking auto update branch... No auto update branch exists Old version 3.0.2" not present in master derivation file with contents: { lib , buildGoModule , fetchFromGitHub }: buildGoModule rec { pname = "nuclei"; version = "3.0.3"; src = fetchFromGitHub { owner = "projectdiscovery"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-yqpSkKebhX3kszL4mSbKUd9JR7rJizLdrk7tHlh6zlc="; }; vendorHash = "sha256-pekirk3nYXDLzoy4iBJblYvN9fkViyMUsRFC0Dx1r9M="; 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"; changelog = "https://github.com/projectdiscovery/nuclei/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ fab Misaka13514 ]; }; }