about summary refs log tree commit diff
path: root/pkgs/applications/networking/sniffers/sngrep
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2023-08-19 20:04:27 +0100
committerRobert Scott <code@humanleg.org.uk>2023-08-19 20:04:27 +0100
commit25fa8c87ba132365063d9234f5fbb84732432ec0 (patch)
tree2b0d090c62e0fae2f1fc9efd817584949d152ded /pkgs/applications/networking/sniffers/sngrep
parent058a0bba89f7db2e95b0ef4ff1f3984d68e2ebcd (diff)
sngrep: add patch for CVE-2023-36192
Diffstat (limited to 'pkgs/applications/networking/sniffers/sngrep')
-rw-r--r--pkgs/applications/networking/sniffers/sngrep/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/applications/networking/sniffers/sngrep/default.nix b/pkgs/applications/networking/sniffers/sngrep/default.nix
index f105450034edb..9adb7117808ff 100644
--- a/pkgs/applications/networking/sniffers/sngrep/default.nix
+++ b/pkgs/applications/networking/sniffers/sngrep/default.nix
@@ -3,6 +3,7 @@
 , autoconf
 , automake
 , fetchFromGitHub
+, fetchpatch
 , libpcap
 , ncurses
 , openssl
@@ -20,6 +21,14 @@ stdenv.mkDerivation rec {
     sha256 = "sha256-gFba2wOU4GwpOZTo5A2QpBgnC6OgDJEeyaPGHbA+7tA=";
   };
 
+  patches = [
+    (fetchpatch {
+      name = "CVE-2023-36192.patch";
+      url = "https://github.com/irontec/sngrep/commit/ad1daf15c8387bfbb48097c25197bf330d2d98fc.patch";
+      hash = "sha256-g8fxvxi3d7jmZEKTbxqw29hJbm/ShsKKxstsOUGxTug=";
+    })
+  ];
+
   nativeBuildInputs = [
     autoconf
     automake