summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2023-02-03 19:22:21 +0000
committerRobert Scott <code@humanleg.org.uk>2023-02-03 19:22:21 +0000
commit7fdbf909208e42bc190ba10972f837682e102526 (patch)
tree090e792838624c7db2f46757ae67e08e9cd66200
parentb3440c2e3543fef2d021bacf17b89fead664edbf (diff)
downloadnixpkgs-7fdbf909208e42bc190ba10972f837682e102526.tar
nixpkgs-7fdbf909208e42bc190ba10972f837682e102526.tar.gz
nixpkgs-7fdbf909208e42bc190ba10972f837682e102526.tar.bz2
nixpkgs-7fdbf909208e42bc190ba10972f837682e102526.tar.lz
nixpkgs-7fdbf909208e42bc190ba10972f837682e102526.tar.xz
nixpkgs-7fdbf909208e42bc190ba10972f837682e102526.tar.zst
nixpkgs-7fdbf909208e42bc190ba10972f837682e102526.zip
limesurvey: add knownVulnerabilities CVE-2022-48008 & CVE-2022-48010
-rw-r--r--pkgs/servers/limesurvey/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/servers/limesurvey/default.nix b/pkgs/servers/limesurvey/default.nix
index d74e1a0fab6..2a5a0a2308b 100644
--- a/pkgs/servers/limesurvey/default.nix
+++ b/pkgs/servers/limesurvey/default.nix
@@ -37,5 +37,9 @@ stdenv.mkDerivation rec {
     homepage = "https://www.limesurvey.org";
     maintainers = with maintainers; [offline];
     platforms = with platforms; unix;
+    knownVulnerabilities = [
+      "CVE-2022-48008"
+      "CVE-2022-48010"
+    ];
   };
 }