squid: remove knownVulnerabilities for 7.0+

In the past, it has been brought up that Squid had many security vulnerabilities
(see https://megamansec.github.io/Squid-Security-Audit/). As of version 7.0,
all of them have been solved, as tracked in their GitHub Security page:
https://github.com/squid-cache/squid/security
This commit is contained in:
Claude Doppler
2025-07-31 18:59:35 +02:00
parent ed56abd1a0
commit f7ab04ac43
+5 -3
View File
@@ -101,8 +101,10 @@ stdenv.mkDerivation (finalAttrs: {
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ raskin ];
knownVulnerabilities = [
"Squid has multiple unresolved security vulnerabilities, for more information see https://megamansec.github.io/Squid-Security-Audit/"
];
# In the past, it has been brought up that Squid had many security vulnerabilities
# (see https://megamansec.github.io/Squid-Security-Audit/). As of version 7.0,
# all of them have been solved, as tracked in their GitHub Security page:
# https://github.com/squid-cache/squid/security
knownVulnerabilities = [ ];
};
})