about summary refs log tree commit diff
path: root/pkgs/servers/http
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2017-03-15 17:33:27 -0400
committerGitHub <noreply@github.com>2017-03-15 17:33:27 -0400
commite4c0613470007df5f286d375f6f529f076bf2c23 (patch)
treeb032badec07f5074ff2ccff21f42bf5e69313778 /pkgs/servers/http
parenteba3900781ef0abd0a8eb478820280851d1e0fbb (diff)
parent72619a86c9166d7b4bea5762070ee14fb72dc6e7 (diff)
downloadnixlib-e4c0613470007df5f286d375f6f529f076bf2c23.tar
nixlib-e4c0613470007df5f286d375f6f529f076bf2c23.tar.gz
nixlib-e4c0613470007df5f286d375f6f529f076bf2c23.tar.bz2
nixlib-e4c0613470007df5f286d375f6f529f076bf2c23.tar.lz
nixlib-e4c0613470007df5f286d375f6f529f076bf2c23.tar.xz
nixlib-e4c0613470007df5f286d375f6f529f076bf2c23.tar.zst
nixlib-e4c0613470007df5f286d375f6f529f076bf2c23.zip
Merge pull request #23674 from c0bw3b/sec/jboss7
JBoss AS: list known vulnerability
Diffstat (limited to 'pkgs/servers/http')
-rw-r--r--pkgs/servers/http/jboss/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/servers/http/jboss/default.nix b/pkgs/servers/http/jboss/default.nix
index 2dd9d544a03b..068053d71f09 100644
--- a/pkgs/servers/http/jboss/default.nix
+++ b/pkgs/servers/http/jboss/default.nix
@@ -22,5 +22,8 @@ stdenv.mkDerivation {
     license = licenses.lgpl21;
     maintainers = [ maintainers.sander ];
     platforms = platforms.unix;
+    knownVulnerabilities = [
+      "CVE-2015-7501: remote code execution in apache-commons-collections: InvokerTransformer during deserialisation"
+    ];
   };
 }