From a5334750fb8130930b4750653fd77daa9994598c Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Thu, 5 Sep 2024 09:34:31 -0400 Subject: [PATCH] webpki-ccadb: update Moz CCADB root report url Per Chris Clements' update to the mailing list[0]: > We recommend users review their linked bookmarks, automation scripts, > integration programs, or similar and: > > Change their references to public report URLs > > from: > ccadb-public.secure.force.com (non-enhanced) > ccadb-public.force.com (non-enhanced) > to: > ccadb.my.salesforce-sites.com (enhanced) [0]: https://groups.google.com/a/ccadb.org/g/public/c/VXfaU1_OaHE/m/58V-lTXVAQAJ --- webpki-ccadb/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpki-ccadb/src/lib.rs b/webpki-ccadb/src/lib.rs index f7ca135..37db663 100644 --- a/webpki-ccadb/src/lib.rs +++ b/webpki-ccadb/src/lib.rs @@ -35,7 +35,7 @@ pub async fn fetch_ccadb_roots() -> BTreeMap { .unwrap(); let ccadb_url = - "https://ccadb-public.secure.force.com/mozilla/IncludedCACertificateReportPEMCSV"; + "https://ccadb.my.salesforce-sites.com/mozilla/IncludedCACertificateReportPEMCSV"; eprintln!("fetching {ccadb_url}..."); let req = client.get(ccadb_url).build().unwrap();