about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-02-04 10:46:21 +0100
committerGitHub <noreply@github.com>2021-02-04 10:46:21 +0100
commitc7d8cb46af37709a5dd99087ae682be22465cecc (patch)
tree6c07c1de618add93bc02f1c1a5529912c57008df /pkgs/tools
parent1fd92ffe04012e516a5bd9a25d751673aa238451 (diff)
parent9ce66bca2b9582987910aa0c0b49a911df703b2e (diff)
Merge pull request #111884 from dotlambda/tcpreplay-insecure
tcpreplay: mark as insecure
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/tcpreplay/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/tools/networking/tcpreplay/default.nix b/pkgs/tools/networking/tcpreplay/default.nix
index 0c322fe9f63fb..a33bb4865687b 100644
--- a/pkgs/tools/networking/tcpreplay/default.nix
+++ b/pkgs/tools/networking/tcpreplay/default.nix
@@ -31,5 +31,9 @@ stdenv.mkDerivation rec {
     license = with licenses; [ bsd3 gpl3 ];
     maintainers = with maintainers; [ eleanor ];
     platforms = platforms.unix;
+    knownVulnerabilities = [
+      "CVE-2020-24265" # https://github.com/appneta/tcpreplay/issues/616
+      "CVE-2020-24266" # https://github.com/appneta/tcpreplay/issues/617
+    ];
   };
 }