Skip to content

Commit

Permalink
[24.05] nuclei: add patch for CVE-2024-40641 (#337225)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeSuisse committed Aug 30, 2024
2 parents 9e97311 + 865e2ec commit d024f7a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pkgs/tools/security/nuclei/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
lib,
buildGoModule,
fetchFromGitHub,
fetchpatch,
}:

buildGoModule rec {
Expand All @@ -17,6 +18,14 @@ buildGoModule rec {

vendorHash = "sha256-DGNjDKjFZ0EJPOJxC7nTCCts8pisomfe4eru2WAHHow=";

patches = [
(fetchpatch {
name = "CVE-2024-40641.patch";
url = "https://github.com/projectdiscovery/nuclei/commit/1c51a6bef6a5d9a5b9c4967e4984595ef4bb48cd.patch";
hash = "sha256-5yB37XIw7jUU80jHUCTtNHEOEw01CPyhB37eBleIe34=";
})
];

subPackages = [ "cmd/nuclei/" ];

ldflags = [
Expand Down

0 comments on commit d024f7a

Please sign in to comment.