summary refs log tree commit diff
path: root/pkgs/tools/misc/opentsdb
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-01-25 15:13:53 +0100
committerRobert Schütz <dev@schuetz-co.de>2021-01-25 15:16:35 +0100
commit570daf897f9c5a3745f3daa495cd6b80c7f8b830 (patch)
treef0ee382e7a3c1bf52275489e410725fff1ea1531 /pkgs/tools/misc/opentsdb
parentdc8231950cc8d539e68296dea77c91bdf0a2aac7 (diff)
downloadnixpkgs-570daf897f9c5a3745f3daa495cd6b80c7f8b830.tar
nixpkgs-570daf897f9c5a3745f3daa495cd6b80c7f8b830.tar.gz
nixpkgs-570daf897f9c5a3745f3daa495cd6b80c7f8b830.tar.bz2
nixpkgs-570daf897f9c5a3745f3daa495cd6b80c7f8b830.tar.lz
nixpkgs-570daf897f9c5a3745f3daa495cd6b80c7f8b830.tar.xz
nixpkgs-570daf897f9c5a3745f3daa495cd6b80c7f8b830.tar.zst
nixpkgs-570daf897f9c5a3745f3daa495cd6b80c7f8b830.zip
opentsdb: mark as insecure
https://github.com/OpenTSDB/opentsdb/issues/2051 has not been addressed yet
Diffstat (limited to 'pkgs/tools/misc/opentsdb')
-rw-r--r--pkgs/tools/misc/opentsdb/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/tools/misc/opentsdb/default.nix b/pkgs/tools/misc/opentsdb/default.nix
index d1fd243467d..168eda1cf3d 100644
--- a/pkgs/tools/misc/opentsdb/default.nix
+++ b/pkgs/tools/misc/opentsdb/default.nix
@@ -32,5 +32,8 @@ stdenv.mkDerivation rec {
     license = licenses.lgpl21Plus;
     platforms = lib.platforms.linux;
     maintainers = [ ];
+    knownVulnerabilities = [
+      "CVE-2020-35476" # https://github.com/OpenTSDB/opentsdb/issues/2051
+    ];
   };
 }