python3Packages.ecdsa: mark insecure

(cherry picked from commit f88a462a44)
This commit is contained in:
Robert Schütz
2025-10-21 13:53:44 -07:00
committed by Michael Daniels
parent b70eb89df2
commit b5e2f9aee0

View File

@@ -24,5 +24,12 @@ buildPythonPackage rec {
description = "ECDSA cryptographic signature library";
homepage = "https://github.com/warner/python-ecdsa";
license = licenses.mit;
knownVulnerabilities = [
# "I don't want people to use this library in production environments.
# It's a teaching tool, it's a testing tool, it's absolutely not an
# production grade implementation."
# https://github.com/tlsfuzzer/python-ecdsa/issues/330
"CVE-2024-23342"
];
};
}