From 570daf897f9c5a3745f3daa495cd6b80c7f8b830 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 25 Jan 2021 15:13:53 +0100 Subject: [PATCH] opentsdb: mark as insecure https://github.com/OpenTSDB/opentsdb/issues/2051 has not been addressed yet --- pkgs/tools/misc/opentsdb/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/tools/misc/opentsdb/default.nix b/pkgs/tools/misc/opentsdb/default.nix index d1fd243467df..168eda1cf3d5 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 + ]; }; }