From 302c57ee820caaef8478a2aa4689fc469d3202f7 Mon Sep 17 00:00:00 2001 From: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com> Date: Mon, 10 Apr 2023 17:48:31 +0100 Subject: [PATCH] assorted C#: removed old cert exceptions (#14237) --- src/Jackett.Common/Indexers/AniDUB.cs | 1 - src/Jackett.Common/Indexers/LostFilm.cs | 2 +- src/Jackett.Common/Indexers/TorrentHeaven.cs | 2 -- 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/Jackett.Common/Indexers/AniDUB.cs b/src/Jackett.Common/Indexers/AniDUB.cs index afc9e9ed3..054cce9d1 100644 --- a/src/Jackett.Common/Indexers/AniDUB.cs +++ b/src/Jackett.Common/Indexers/AniDUB.cs @@ -44,7 +44,6 @@ namespace Jackett.Common.Indexers cacheService: cs, configData: new ConfigurationDataAniDub()) { - webclient.AddTrustedCertificate(new Uri(SiteLink).Host, "392E98CE1447B59CA62BAB8824CA1EEFC2ED3D37"); } private TorznabCapabilities SetCapabilities() diff --git a/src/Jackett.Common/Indexers/LostFilm.cs b/src/Jackett.Common/Indexers/LostFilm.cs index 3876a7469..d3a7329d7 100644 --- a/src/Jackett.Common/Indexers/LostFilm.cs +++ b/src/Jackett.Common/Indexers/LostFilm.cs @@ -33,6 +33,7 @@ namespace Jackett.Common.Indexers "https://www.lostfilm.win/", "https://www.lostfilm.tw/", "https://www.lostfilmtv2.site/", + "https://www.lostfilmtv3.site/", "https://www.lostfilmtv5.site/", "https://www.lostfilm.uno/" }; @@ -122,7 +123,6 @@ namespace Jackett.Common.Indexers cacheService: cs, configData: new ConfigurationDataCaptchaLogin()) { - webclient.AddTrustedCertificate(new Uri(SiteLink).Host, "98D43B6E740B42C02A9BD1A9D1A813E4350BE332"); // for *.win expired 26/Mar/22 webclient.AddTrustedCertificate(new Uri(SiteLink).Host, "34287FB53A58EC6AE590E7DD7E03C70C0263CADC"); // for *.tw expired 01/Apr/21 } diff --git a/src/Jackett.Common/Indexers/TorrentHeaven.cs b/src/Jackett.Common/Indexers/TorrentHeaven.cs index 002a94842..5b97af83a 100644 --- a/src/Jackett.Common/Indexers/TorrentHeaven.cs +++ b/src/Jackett.Common/Indexers/TorrentHeaven.cs @@ -47,8 +47,6 @@ namespace Jackett.Common.Indexers cacheService: cs, configData: new ConfigurationDataCaptchaLogin()) { - // incomplete CA chain - wc.AddTrustedCertificate(new Uri(SiteLink).Host, "8612e46b2abd418b6398dbf2382ebcf44b10f378"); } private TorznabCapabilities SetCapabilities()