nextcloud: 19.0.4 -> 19.0.6, 20.0.1 -> 20.0.3, mark v19 as insecure
ChangeLogs: * https://nextcloud.com/changelog/#20-0-3 * https://nextcloud.com/changelog/#19-0-6 For Nextcloud 20, security advisories for CVE-2020-8259[1] & CVE-2020-8152[2] were published. The only way to fix those is to upgrade to v20, although v19 and v18 are supported, the issue won't be fixed there[3]. Even though both CVEs are only related to the encryption module[4] which is turned off by default, I decided to add a vulnerability note to `nextcloud19` since CVE-2020-8259's is rated as "High" by NIST (in contrast to Nextcloud which rates it as "Low"). If one is not affected by the issue, `nextcloud19` can still be used by declaring `permittedInsecurePackages`[5]. [1] https://nvd.nist.gov/vuln/detail/CVE-2020-8259, https://nextcloud.com/security/advisory/?id=NC-SA-2020-041 [2] https://nvd.nist.gov/vuln/detail/CVE-2020-8152, https://nextcloud.com/security/advisory/?id=NC-SA-2020-040 [3] https://help.nextcloud.com/t/fixes-for-cve-2020-8259-cve-2020-8152-in-nextcloud-18-19/98289 [4] https://docs.nextcloud.com/server/20/admin_manual/configuration_files/encryption_configuration.html [5] https://nixos.org/manual/nixpkgs/stable/#sec-allow-insecure Closes #106212
This commit is contained in:
parent
656888e1ec
commit
520b10453f
1 changed files with 14 additions and 7 deletions
|
@ -1,7 +1,10 @@
|
|||
{ stdenv, fetchurl, nixosTests }:
|
||||
|
||||
let
|
||||
generic = { version, sha256, insecure ? false }: stdenv.mkDerivation rec {
|
||||
generic = {
|
||||
version, sha256,
|
||||
eol ? false, extraVulnerabilities ? []
|
||||
}: stdenv.mkDerivation rec {
|
||||
pname = "nextcloud";
|
||||
inherit version;
|
||||
|
||||
|
@ -23,7 +26,8 @@ let
|
|||
maintainers = with maintainers; [ schneefux bachp globin fpletz ma27 ];
|
||||
license = licenses.agpl3Plus;
|
||||
platforms = with platforms; unix;
|
||||
knownVulnerabilities = optional insecure "Nextcloud version ${version} is EOL";
|
||||
knownVulnerabilities = extraVulnerabilities
|
||||
++ (optional eol "Nextcloud version ${version} is EOL");
|
||||
};
|
||||
};
|
||||
in {
|
||||
|
@ -42,16 +46,19 @@ in {
|
|||
nextcloud18 = generic {
|
||||
version = "18.0.10";
|
||||
sha256 = "0kv9mdn36shr98kh27969b8xs7pgczbyjklrfskxy9mph7bbzir6";
|
||||
insecure = true;
|
||||
eol = true;
|
||||
};
|
||||
|
||||
nextcloud19 = generic {
|
||||
version = "19.0.4";
|
||||
sha256 = "0y5fccn61qf9fxjjpqdvhmxr9w5n4dgl1d7wcl2dzjv4bmqi2ms6";
|
||||
version = "19.0.6";
|
||||
sha256 = "sha256-pqqIayE0OyTailtd2zeYi+G1APjv/YHqyO8jCpq7KJg=";
|
||||
extraVulnerabilities = [
|
||||
"Nextcloud 19 is still supported, but CVE-2020-8259 & CVE-2020-8152 are unfixed!"
|
||||
];
|
||||
};
|
||||
|
||||
nextcloud20 = generic {
|
||||
version = "20.0.1";
|
||||
sha256 = "1z1fzz1i41k4dhdhi005l3gzkvnmmgqqz3rdr374cvk73q7bbiln";
|
||||
version = "20.0.3";
|
||||
sha256 = "sha256-4PZFBNM49k08Z3NX8AEs+LDtDcQuwI+Vi23E/3Dt8XU=";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue