Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SSL] Update certificate authorities info #16679

Merged
merged 22 commits into from
Sep 19, 2024

Conversation

RebeccaTamachiro
Copy link
Contributor

Summary

PCX-11622
PCX-11971

@github-actions github-actions bot added size/s product:ssl Related to SSL labels Sep 6, 2024
Copy link

cloudflare-workers-and-pages bot commented Sep 6, 2024

Deploying cloudflare-docs with  Cloudflare Pages  Cloudflare Pages

Latest commit: 9b86289
Status: ✅  Deploy successful!
Preview URL: https://3af8ceea.cloudflare-docs-7ou.pages.dev
Branch Preview URL: https://rebecca-ssl-ssl-com-and-entr.cloudflare-docs-7ou.pages.dev

View logs

Copy link

github-actions bot commented Sep 6, 2024

Files with changes (up to 15)

Original Link Updated Link
https://developers.cloudflare.com/ssl/reference/certificate-authorities/ https://rebecca-ssl-ssl-com-and-entr.cloudflare-docs-7ou.pages.dev/ssl/reference/certificate-authorities/
https://developers.cloudflare.com/ssl/reference/migration-guides/entrust-distrust/ https://rebecca-ssl-ssl-com-and-entr.cloudflare-docs-7ou.pages.dev/ssl/reference/migration-guides/entrust-distrust/
https://developers.cloudflare.com/ssl/edge-certificates/changing-dcv-method/validation-backoff-schedule/ https://rebecca-ssl-ssl-com-and-entr.cloudflare-docs-7ou.pages.dev/ssl/edge-certificates/changing-dcv-method/validation-backoff-schedule/
https://developers.cloudflare.com/ssl/reference/migration-guides/lets-encrypt-chain/ https://rebecca-ssl-ssl-com-and-entr.cloudflare-docs-7ou.pages.dev/ssl/reference/migration-guides/lets-encrypt-chain/
https://developers.cloudflare.com/ssl/edge-certificates/custom-certificates/ https://rebecca-ssl-ssl-com-and-entr.cloudflare-docs-7ou.pages.dev/ssl/edge-certificates/custom-certificates/
https://developers.cloudflare.com/cloudflare-for-platforms/cloudflare-for-saas/reference/token-validity-periods/ https://rebecca-ssl-ssl-com-and-entr.cloudflare-docs-7ou.pages.dev/cloudflare-for-platforms/cloudflare-for-saas/reference/token-validity-periods/
https://developers.cloudflare.com/cloudflare-for-platforms/cloudflare-for-saas/security/certificate-management/issue-and-validate/renew-certificates/ https://rebecca-ssl-ssl-com-and-entr.cloudflare-docs-7ou.pages.dev/cloudflare-for-platforms/cloudflare-for-saas/security/certificate-management/issue-and-validate/renew-certificates/
https://developers.cloudflare.com/ssl/edge-certificates/additional-options/certificate-transparency-monitoring/ https://rebecca-ssl-ssl-com-and-entr.cloudflare-docs-7ou.pages.dev/ssl/edge-certificates/additional-options/certificate-transparency-monitoring/
https://developers.cloudflare.com/ssl/edge-certificates/backup-certificates/ https://rebecca-ssl-ssl-com-and-entr.cloudflare-docs-7ou.pages.dev/ssl/edge-certificates/backup-certificates/
https://developers.cloudflare.com/ssl/edge-certificates/troubleshooting/ca-faq/ https://rebecca-ssl-ssl-com-and-entr.cloudflare-docs-7ou.pages.dev/ssl/edge-certificates/troubleshooting/ca-faq/
https://developers.cloudflare.com/ssl/reference/migration-guides/dcv-update/ https://rebecca-ssl-ssl-com-and-entr.cloudflare-docs-7ou.pages.dev/ssl/reference/migration-guides/dcv-update/
https://developers.cloudflare.com/ssl/reference/migration-guides/digicert-update/ https://rebecca-ssl-ssl-com-and-entr.cloudflare-docs-7ou.pages.dev/ssl/reference/migration-guides/digicert-update/

@github-actions github-actions bot added size/m and removed size/s labels Sep 10, 2024
Copy link

gitguardian bot commented Sep 17, 2024

⚠️ GitGuardian has uncovered 3 secrets following the scan of your pull request.

Please consider investigating the findings and remediating the incidents. Failure to do so may lead to compromising the associated services or software components.

🔎 Detected hardcoded secrets in your pull request
GitGuardian id GitGuardian status Secret Commit Filename
11021221 Triggered Generic High Entropy Secret 9512a1c astro.config.mjs View secret
11021221 Triggered Generic High Entropy Secret 9512a1c astro.config.mjs View secret
11021221 Triggered Generic High Entropy Secret 9512a1c astro.config.mjs View secret
🛠 Guidelines to remediate hardcoded secrets
  1. Understand the implications of revoking this secret by investigating where it is used in your code.
  2. Replace and store your secrets safely. Learn here the best practices.
  3. Revoke and rotate these secrets.
  4. If possible, rewrite git history. Rewriting git history is not a trivial act. You might completely break other contributing developers' workflow and you risk accidentally deleting legitimate data.

To avoid such incidents in the future consider


🦉 GitGuardian detects secrets in your source code to help developers and security teams secure the modern development process. You are seeing this because you or someone else with access to this repository has authorized GitGuardian to scan your pull request.

@@ -21,7 +21,7 @@ Yes. Cloudflare can issue both RSA and ECDSA certificates.

### Which certificate authorities does Cloudflare use?

Cloudflare uses Let’s Encrypt, Google Trust Services, Sectigo, and DigiCert. You can see a complete list of products and available CAs and algorithms in the [certificate authorities reference page](/ssl/reference/certificate-authorities/).
Cloudflare uses Let’s Encrypt, Google Trust Services, SSL.com, Sectigo, and DigiCert. You can see a complete list of products and available CAs and algorithms in the [certificate authorities reference page](/ssl/reference/certificate-authorities/).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Cloudflare uses Lets Encrypt, Google Trust Services, SSL.com, Sectigo, and DigiCert. You can see a complete list of products and available CAs and algorithms in the [certificate authorities reference page](/ssl/reference/certificate-authorities/).
Cloudflare uses 'Let's Encrypt', Google Trust Services, SSL.com, Sectigo, and DigiCert. You can see a complete list of products and available CAs and algorithms in the [certificate authorities reference page](/ssl/reference/certificate-authorities/).

Issues:

  • Style Guide - (cloudflare.NonStandardQuotes-warning) Use standard single quotes or double quotes only. Do not use left or right quotes.

Fix Explanation:

The original text uses a non-standard apostrophe in 'Let’s Encrypt'. According to the style guide, we should replace it with a standard single quote. The replacement text uses a standard single quote for 'Let's Encrypt'. This change aligns with the style guide's requirement to avoid left or right quotes. No other changes are necessary.

@RebeccaTamachiro RebeccaTamachiro marked this pull request as ready for review September 17, 2024 16:51
@RebeccaTamachiro RebeccaTamachiro requested a review from a team as a code owner September 17, 2024 16:51
@@ -8,7 +8,9 @@ description: For publicly trusted certificates, Cloudflare partners with
different certificate authorities (CAs). Refer to this page to check what CAs
are used for each Cloudflare offering and for more details about the CAs
features, limitations, and browser compatibility.

banner:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hadn't seen this being used yet!
Maybe we can discuss when we should use it in critique?

@RebeccaTamachiro RebeccaTamachiro merged commit bab63fa into production Sep 19, 2024
13 checks passed
@RebeccaTamachiro RebeccaTamachiro deleted the rebecca/ssl-ssl-com-and-entrust-distrust branch September 19, 2024 08:55
@RebeccaTamachiro
Copy link
Contributor Author

Closes #15902

vy-ton pushed a commit that referenced this pull request Sep 19, 2024
* Add ssl.com to certificate-authorities reference page

* Update caa-records-added-by-cf partial

* Refer ssl.com in other places where CAs used by CF are listed

* Add help link to ct-monitoring page

* Add ssl.com to custom hostname docs

* More information on availability and timeline

* Add entrust-distrust and re-order items within migration-guides

* Overall review of entrust-distrust and certificate-authorities

* Call out CF certificates as alternative to custom issued by same CAs

* Fix repeated Digicert info in CAA record content table

* Fix SSL.com availability in general CA to cert type table

* Update SSL.com browser compatibility with cross-sign info

* Add SSL.com DCV tokens validity

* Fix issue flagged in Hyperlint check

* Update distrust dates

* Fix date for Mozilla

* Apply suggestions from code review

Co-authored-by: Pedro Sousa <[email protected]>

* Fix beta capitalization and move content from banner to aside

* Update backup-certificates.mdx

* Fix apostrophe and remove banner

---------

Co-authored-by: Pedro Sousa <[email protected]>
elithrar pushed a commit that referenced this pull request Oct 15, 2024
* Add ssl.com to certificate-authorities reference page

* Update caa-records-added-by-cf partial

* Refer ssl.com in other places where CAs used by CF are listed

* Add help link to ct-monitoring page

* Add ssl.com to custom hostname docs

* More information on availability and timeline

* Add entrust-distrust and re-order items within migration-guides

* Overall review of entrust-distrust and certificate-authorities

* Call out CF certificates as alternative to custom issued by same CAs

* Fix repeated Digicert info in CAA record content table

* Fix SSL.com availability in general CA to cert type table

* Update SSL.com browser compatibility with cross-sign info

* Add SSL.com DCV tokens validity

* Fix issue flagged in Hyperlint check

* Update distrust dates

* Fix date for Mozilla

* Apply suggestions from code review

Co-authored-by: Pedro Sousa <[email protected]>

* Fix beta capitalization and move content from banner to aside

* Update backup-certificates.mdx

* Fix apostrophe and remove banner

---------

Co-authored-by: Pedro Sousa <[email protected]>
maheshwarip pushed a commit that referenced this pull request Dec 2, 2024
* Add ssl.com to certificate-authorities reference page

* Update caa-records-added-by-cf partial

* Refer ssl.com in other places where CAs used by CF are listed

* Add help link to ct-monitoring page

* Add ssl.com to custom hostname docs

* More information on availability and timeline

* Add entrust-distrust and re-order items within migration-guides

* Overall review of entrust-distrust and certificate-authorities

* Call out CF certificates as alternative to custom issued by same CAs

* Fix repeated Digicert info in CAA record content table

* Fix SSL.com availability in general CA to cert type table

* Update SSL.com browser compatibility with cross-sign info

* Add SSL.com DCV tokens validity

* Fix issue flagged in Hyperlint check

* Update distrust dates

* Fix date for Mozilla

* Apply suggestions from code review

Co-authored-by: Pedro Sousa <[email protected]>

* Fix beta capitalization and move content from banner to aside

* Update backup-certificates.mdx

* Fix apostrophe and remove banner

---------

Co-authored-by: Pedro Sousa <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants