assorted C#: removed old cert exceptions (#14237)

This commit is contained in:
ilike2burnthing 2023-04-10 17:48:31 +01:00 committed by GitHub
parent e43f1b8bf5
commit 302c57ee82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 4 deletions

View File

@ -44,7 +44,6 @@ namespace Jackett.Common.Indexers
cacheService: cs,
configData: new ConfigurationDataAniDub())
{
webclient.AddTrustedCertificate(new Uri(SiteLink).Host, "392E98CE1447B59CA62BAB8824CA1EEFC2ED3D37");
}
private TorznabCapabilities SetCapabilities()

View File

@ -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
}

View File

@ -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()