Commit f7ab04ac authored by Claude Doppler's avatar Claude Doppler
Browse files

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
parent ed56abd1
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -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 = [ ];
  };
})