python3Packages.pypdf{2,3}: mark insecure (#504557)

This commit is contained in:
dotlambda
2026-03-29 19:35:38 +00:00
committed by GitHub
2 changed files with 16 additions and 0 deletions
@@ -29,5 +29,13 @@ buildPythonPackage rec {
homepage = "https://pypdf2.readthedocs.io/";
changelog = "https://github.com/py-pdf/PyPDF2/raw/${version}/CHANGELOG.md";
license = lib.licenses.bsd3;
knownVulnerabilities = [
"CVE-2026-27024"
"CVE-2026-27025"
"CVE-2026-27628"
"CVE-2026-27888"
"CVE-2026-28351"
"CVE-2026-33699"
];
};
}
@@ -32,5 +32,13 @@ buildPythonPackage (finalAttrs: {
homepage = "https://github.com/sfneal/PyPDF3";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ ambroisie ];
knownVulnerabilities = [
"CVE-2026-27024"
"CVE-2026-27025"
"CVE-2026-27628"
"CVE-2026-27888"
"CVE-2026-28351"
"CVE-2026-33699"
];
};
})