JBoss AS: list known vulnerability

CVE-2015-7501

Warning in JBoss module

Renaud 72619a86 665a89c4

Changed files
+4 -1
nixos
modules
services
web-servers
jboss
pkgs
servers
http
jboss
+1 -1
nixos/modules/services/web-servers/jboss/default.nix
···
enable = mkOption {
default = false;
-
description = "Whether to enable jboss";
+
description = "Whether to enable JBoss. WARNING : this package is outdated and is known to have vulnerabilities.";
};
tempDir = mkOption {
+3
pkgs/servers/http/jboss/default.nix
···
license = licenses.lgpl21;
maintainers = [ maintainers.sander ];
platforms = platforms.unix;
+
knownVulnerabilities = [
+
"CVE-2015-7501: remote code execution in apache-commons-collections: InvokerTransformer during deserialisation"
+
];
};
}