diff --git a/docs/app/core-concepts/best-practices.mdx b/docs/app/core-concepts/best-practices.mdx
index 3f71324796..b73c4c7eeb 100644
--- a/docs/app/core-concepts/best-practices.mdx
+++ b/docs/app/core-concepts/best-practices.mdx
@@ -312,7 +312,7 @@ or interact with sites or servers you do not control.
that you control. Try to avoid visiting or requiring a 3rd party server. If you choose,
you may use [`cy.request()`](/api/commands/request) to talk to 3rd party servers
via their APIs. If possible, cache results via [`cy.session()`](/api/commands/session)
-to avoid repeat visits.
+to avoid repeat visits. See also reasons against [Testing Apps You Don't Control](/app/end-to-end-testing/writing-your-first-end-to-end-test#Testing-Apps-You-Dont-Control).
:::
diff --git a/docs/app/end-to-end-testing/writing-your-first-end-to-end-test.mdx b/docs/app/end-to-end-testing/writing-your-first-end-to-end-test.mdx
index 9bcb2297a0..da5226f2e4 100644
--- a/docs/app/end-to-end-testing/writing-your-first-end-to-end-test.mdx
+++ b/docs/app/end-to-end-testing/writing-your-first-end-to-end-test.mdx
@@ -225,35 +225,6 @@ have failed.
title="First test with cy.visit()"
/>
-:::danger
-
-Testing Apps You Don't Control
-
-In this guide we are testing our example application:
-[`https://example.cypress.io`](https://example.cypress.io). However you should
-think carefully about testing applications you **don't control**. Why?
-
-- They have the potential to change at any moment which will break tests.
-- They may do A/B testing which makes it impossible to get consistent results.
-- They may detect you are a script and block your access.
-- They may have security features enabled which prevent Cypress from working.
-
-Generally speaking, the point of Cypress is to be a tool you use every day to
-build and test your own applications, not a general purpose web automation tool.
-However, this is a guideline rather than a hard-and-fast rule and there are a
-number of good reasons to make exceptions for certain kinds of application:
-
-- They are specifically designed to integrate with third parties, e.g. SSO
- providers.
-- They provide you with a complementary service, e.g. SaaS control panels or
- analytics.
-- They reuse your content or provide plugins for an app you control.
-
-The key here is to carefully weigh the benefits of the tests in question against
-the possible disruption and flake these sorts of tests can introduce.
-
-:::
-
### Step 2: Query for an element
Now that we've got a page loaded, we need to take some action on it. Why don't
@@ -511,6 +482,45 @@ If you want a minimal code approach to creating tests, you can use
interactions and generate tests. Visit our
[guide](/app/guides/cypress-studio) for more information.
+## Testing Apps You Don't Control
+
+:::danger
+
+ **Anti-Pattern:** Trying to visit
+or interact with sites or servers you do not control.
+
+:::
+
+In this guide we are testing our example application:
+[https://example.cypress.io](https://example.cypress.io).
+However you should think carefully about testing applications you **don't control**
+or you haven't been invited to test by the owner.
+Why?
+
+- They may have security features enabled which prevent Cypress from working,
+ such as detecting Cypress script usage. This can block your access and make it
+ appear that the application website is unresponsive.
+- They have the potential to change at any moment which will break tests.
+- They may do A/B testing which makes it impossible to get consistent results.
+
+Generally speaking, the point of Cypress is to be a tool you use every day to
+build and test your own applications, not a general purpose web automation tool.
+However, this is a guideline rather than a hard-and-fast rule and there are a
+number of good reasons to make exceptions for certain kinds of application:
+
+- They are specifically designed to integrate with third parties, e.g. SSO
+ providers.
+- They provide you with a complementary service, e.g. SaaS control panels or
+ analytics.
+- They reuse your content or provide plugins for an app you control.
+
+The key here is to carefully weigh the benefits of the tests in question against
+the possible disruption and flake these sorts of tests can introduce.
+
+See also [Visiting External Sites](/app/core-concepts/best-practices#Visiting-External-Sites),
+on our [Best Practices](/app/core-concepts/best-practices) page,
+which discusses strategies when this is necessary.
+
## Next steps
- Take our free