From 034d277c6e32133163d2fd5d7ead0b4b70f478a2 Mon Sep 17 00:00:00 2001 From: Ingo Blechschmidt Date: Fri, 17 Dec 2021 21:32:54 +0100 Subject: [PATCH] tightvnc: mark as insecure (fixes #150704) --- pkgs/tools/admin/tightvnc/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/tools/admin/tightvnc/default.nix b/pkgs/tools/admin/tightvnc/default.nix index 0da2e7875f08..e466b95c4f00 100644 --- a/pkgs/tools/admin/tightvnc/default.nix +++ b/pkgs/tools/admin/tightvnc/default.nix @@ -82,5 +82,9 @@ stdenv.mkDerivation rec { maintainers = []; platforms = lib.platforms.unix; + + knownVulnerabilities = [ "CVE-2021-42785" ]; + # Unfortunately, upstream doesn't maintain the 1.3 branch anymore, and the + # new 2.x branch is substantially different (requiring either Windows or Java) }; }